6-5
#include <> #define N 5 int main()
{ int a[N],i,temp;
printf(\ for (i=0;i for (i=0;i #include <> int main() {int i,j,upp,low,dig,spa,oth; 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 <> int main() { 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 <> int main() { int j,n; 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 <> int main() {int j,n; 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 <> int main() { 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 <> int main() { int i,resu; 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 <> #include <> int main() { 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 为什么要用函数170 怎样定义函数172 为什么要定义函数172 定义函数的方法173 调用函数174 函数调用的形式174 函数调用时的数据传递175 函数调用的过程177 函数的返回值178 对被调用函数的声明和函数原型179 函数的嵌套调用182 函数的递归调用184 数组作为函数参数192 数组元素作函数实参193 数组名作函数参数194 多维数组名作函数参数197 局部变量和全局变量199 局部变量199 全局变量200 变量的存储方式和生存期204 动态存储方式与静态存储方式204 局部变量的存储类别205 全局变量的存储类别208 存储类别小结212 关于变量的声明和定义214 内部函数和外部函数215 内部函数215 外部函数215 习题218 7-1-1 #include <> int main() {int hcf(int,int); int lcd(int,int,int); int u,v,h,l; scanf(\ h=hcf(u,v);