char text[3][80];
upp=low=dig=spa=oth=0; for (i=0;i<3;i++)
{ printf(\ gets(text[i]);
for (j=0;j<80 && text[i][j]!='\\0';j++) {if (text[i][j]>='A'&& text[i][j]<='Z') upp++;
else if (text[i][j]>='a' && text[i][j]<='z') low++;
else if (text[i][j]>='0' && text[i][j]<='9') dig++;
else if (text[i][j]==' ') spa++; else oth++; } }
printf(\ printf(\ printf(\ : %d\\n\ printf(\ : %d\\n\ printf(\ : %d\\n\ return 0; } 6-11
#include
{ char a[5]={'*','*','*','*','*'}; int i,j,k;
char space=' '; for (i=0;i<5;i++) { printf(\ printf(\ \ for (j=1;j<=i;j++) printf(\ for (k=0;k<5;k++) printf(\ }
printf(\ return 0; }
6-12a-c
#include
char ch[80],tran[80];
printf(\ gets(ch);
printf(\ :%s\ j=0;
while (ch[j]!='\\0')
{ if ((ch[j]>='A') && (ch[j]<='Z')) tran[j]=155-ch[j];
else if ((ch[j]>='a') && (ch[j]<='z')) tran[j]=219-ch[j]; else
tran[j]=ch[j]; j++; } n=j;
printf(\ for (j=0;j 6-12b #include char ch[80]; printf(\ gets(ch); printf(\ j=0; while (ch[j]!='\\0') { if ((ch[j]>='A') && (ch[j]<='Z')) ch[j]=155-ch[j]; else if ((ch[j]>='a') && (ch[j]<='z')) ch[j]=219-ch[j]; else ch[j]=ch[j]; j++; } n=j; printf(\ for (j=0;j #include { char s1[80],s2[40]; int i=0,j=0; printf(\ scanf(\ printf(\ scanf(\ while (s1[i]!='\\0') i++; while(s2[j]!='\\0') s1[i++]=s2[j++]; s1[i]='\\0'; printf(\ return 0; } 6-14 #include char s1[100],s2[100]; printf(\ gets(s1); printf(\ gets(s2); i=0; while ((s1[i]==s2[i]) && (s1[i]!='\\0'))i++; if (s1[i]=='\\0' && s2[i]=='\\0') resu=0; else resu=s1[i]-s2[i]; printf(\ return 0; } 6-15 #include { char s1[80],s2[80]; int i; printf(\ scanf(\ for (i=0;i<=strlen(s2);i++) s1[i]=s2[i]; printf(\ return 0; } 第7章用函数实现模块化程序设计170 7.1为什么要用函数170 7.2怎样定义函数172 7.2.1为什么要定义函数172 7.2.2定义函数的方法173 7.3调用函数174 7.3.1函数调用的形式174 7.3.2函数调用时的数据传递175 7.3.3函数调用的过程177 7.3.4函数的返回值178 7.4对被调用函数的声明和函数原型179 7.5函数的嵌套调用182 7.6函数的递归调用184 7.7数组作为函数参数192 7.7.1数组元素作函数实参193 7.7.2数组名作函数参数194 7.7.3多维数组名作函数参数197 7.8局部变量和全局变量199 7.8.1局部变量199 7.8.2全局变量200 7.9变量的存储方式和生存期204 7.9.1动态存储方式与静态存储方式204 7.9.2局部变量的存储类别205 7.9.3全局变量的存储类别208 7.9.4存储类别小结212 7.10关于变量的声明和定义214 7.11内部函数和外部函数215 7.11.1内部函数215 7.11.2外部函数215 习题218 7-1-1 #include {int hcf(int,int); int lcd(int,int,int); int u,v,h,l; scanf(\ h=hcf(u,v); printf(\ l=lcd(u,v,h); printf(\ return 0; } int hcf(int u,int v) {int t,r; if (v>u) {t=u;u=v;v=t;} while ((r=u%v)!=0) {u=v; v=r;} return(v); } int lcd(int u,int v,int h) { return(u*v/h); } 7-1-2 #include {void hcf(int,int);