正在加载图片...
printf(“atb=%d\n”,c);} 四、程序填空题,将下面程序补充完整(10个填空,每空2分,共20分): 1.输出九九表。 #include“stdio.h” void main() int i,j; for(i=1;i<=9;i++) {for(j=1:①:j+) printf(“%3d*%d-%2d”,i,j,i*j): ②: } } 2.利用函数形式,求x数组所有元素的平均值并输出。 #include“stdio.h” ①: void main() {f1 oat avg,x[10]={1.2,3.6,4.5,5.1,6.9,7,8,9,10.5,11.3}: avg=average (x): printf(“The average is%5.2f\n”,avg): } float average(float a[l0]) int i; float sum=0; for(i=0;i<10;i++)sum=sumta[i] ②: } 3.编写一个计算字符串长度的函数length. #include“stdio.h void main() char str[20]: int m: int length(char *p); printf("Input a string:\n"); gets(str): ①: printf("In the length of str is%d "m): } int length(char *p) int n=0; while(②){nt+:pt+:} return n:} 4.输入10个整数,按每行3个数输出这些整数,最后输出10个整数的平均值。 #include“stdio.h" void main()printf(“a+b=%d\n”,c); } 四、程序填空题,将下面程序补充完整(10 个填空,每空 2 分,共 20 分): 1.输出九九表。 #include “stdio.h” void main( ) { int i,j; for(i=1;i<=9;i++) {for(j=1; ① ;j++) printf(“%3d*%d=%2d”,i,j,i*j); ② ; } } 2.利用函数形式,求 x 数组所有元素的平均值并输出。 #include “stdio.h” ① ; void main( ) { float avg,x[10]={1.2,3.6,4.5,5.1,6.9,7,8,9,10.5,11.3}; avg=average(x); printf(“The average is %5.2f\n”,avg); } float average(float a[10]) { int i; float sum=0; for(i=0;i<10;i++) sum=sum+a[i]; ② ; } 3.编写一个计算字符串长度的函数 length。 #include “stdio.h” void main( ) { char str[20]; int m; int length(char *p); printf("Input a string:\n"); gets(str); ① ; printf("\n the length of str is%d ",m); } int length(char *p) { int n=0; while( ② ) { n++; p++; } return n;} 4.输入 10 个整数,按每行 3 个数输出这些整数,最后输出 10 个整数的平均值。 #include “stdio.h” void main( )
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有