全国计算机等级考试C语言考试程序填空题(9)
在考生文件夹下,给定程序FILL.C的功能是: 把数组a(大小为M)中前M-1个元素中的最小值放入a的最后一个元素中
#include #define M 11 void main() { int a[M],i; for(i=0;i scanf("%d",&a[i]); a[M-1]=a[0];
for(i=1; ___(1)___;i++) /************found************/
a[M-1]=a[i]; printf("Max is %d ",a[M-1]); } 相关资料 |