- 1、本文档共44页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CHAPTE 3;Contents;3.1 Statements and Blocks;3.1 Statements and Blocks(语句与分程序);3.1 Statements and Blocks;3.2 If-Else;3.2 If-Else;3.2 If-Else;3.2 If-Else;3.3 Else-If;3.3 Else-If;3.3 Else-If;3.3 Else-If;3.4 Switch;3.4 Switch;3.4 Switch;3.4 Switch;3.4 Switch;Example:count digit,white space, others
main( )
{ int c,i,nwhite,nother,ndigit[10];
nwhite=nother=0;
for(i=0;i10;i++)
ndigit[i]=0;
while((c=getchar())!=EOF)
{
switch(c)
{
case ‘0’: case ‘1’: case ‘2’: case ‘3’: case ‘4’: case ‘5’: case ‘6’: case ‘7’: case ‘8’: case ‘9’:
ndigit[c-’0’]++; break;
case ‘ ’: case ‘\n’: case ‘\t’:
nwhite++; break;
default:
nother++; break;
}
}
……
};3.4 Switch;3.4 Switch;3.5 Loops-While and For;3.5 Loops-While and For;3.5 Loops-While and For;3.5 Loops-While and For;the expr1 and expr3 are omitted, equal to while
for( ;i=100;)
{
sum+=i;
i++;
}
all are omitted
for ( ; ;) ? while(1)
the expr1 can initialize other expressions
for( sum=0;i=100; i++ ) sum+=i;;the expr1 and expr3 may be a Comma expression;
for(sum=0,i=1; i=100; i++) sum+=i;
for(i=0,j=100 ; ij; i++,j--) k=i+j;
the expr2 is relational expression, 0 or not 0
for ( ; (c=getchar())!=‘\n’ ;)
;Example:convert s to integer
#include ctype.h
int atoi(char s[])
{
int i,n,sign;
for(i=0;isspace(s[i]);i++)
;
sign=(s[i]==‘-’)? –1:1;
if(s[i]==‘+’ || s[i]==‘-’) i++;
for(n=0;isdigit(s[i]);i++)
n=10*n+(s[i]-’0’);
return sign*n;
};Example: sort an array into increasing order
void popsort(int v[ ],int n) /*起泡法*/
{ int i,j,t;
for(j=0;jn-1;j++)
{
for(i=0;in-1-j;i++)
{ if(v[i]v[i+1])
{ t=v[i];
v[i]=v[i+1];
v[i+1]=t;
}
}
}
};Example:reverse string s in place
#include string.h
void reverse(char s[])
{
int c,i,j;
for(i=0, j=strlen(s)-1; ij; i++, j--)
{
c=s[ j ];
s[ j ]=s[
您可能关注的文档
- C程序设计_第三讲:程序设计方法-问题分析.ppt
- C程序设计_第五讲:程序设计方法(三)复杂数据结构设计.ppt
- C程序设计英文课件:CHAPTE 2 Types,Operators and Expressions.ppt
- C程序设计英文课件:CHAPTE 4 Functions and Program Structure.ppt
- C程序设计英文课件:CHAPTE 5 Pointer and Arrays.ppt
- C程序设计英文课件:CHAPTE 6 Structures.ppt
- C程序设计英文课件:CHAPTE 7 Input and Output.ppt
- C程序设计英文课件:第一章 A Tutorial Introduction.ppt
- C程序设计英文课件:复习.ppt
- 从计算机工程教育看知识、能力与工程方法浅谈.ppt
文档评论(0)