题目内容
请将代码补充完整。01 #include 02 #include 0304 void fun(int []);0506 int main()07 {08 int a[10];09 int i;10 FILE *fp;11 if ((fp = fopen("c:\\tmp.txt", "w")) == NULL)12 {13 printf("can not open the file\n");14 exit(1);15 }16 fun(a);17 for (i = 0; i<10; i++)18 {19 printf("%4d", a[i]);20 fprintf(, "%4d", a[i]);21 }22 fclose(fp);23 return 0;24 }2526 void fun(int a[])27 {28 int i;29 int cnt = 0;30 for (i = 1; cnt<10; i++)31 {32 if (i % 2 == 1 && i % 3 == 1 &&)33 {34 a[cnt] = ;35 cnt++;36 }37 }38 }
查看答案
搜索结果不匹配?点我反馈
更多问题