- 相关推荐
C语言程序改错习题
行动是通向成功的唯一途径。以下是小编为大家搜索整理的C语言程序改错习题,希望能给大家带来帮助!更多精彩内容请及时关注我们应届毕业生考试网!
在考生文件夹下,给定程序MODI.C的功能是:
求一维数组a中的最大元素及其下标。
例如,当一维数组a中的元素为:1,4,2,7,3,12,5,34,5,9,
程序的输出应为:The max is: 34,pos is: 7 。
#include
#include
void main()
{
int a[10]={1,4,2,7,3,12,5,34,5,9},i,max,pos;
max = a[0];
pos = 0;
for ( i=1; i<10; i++)
/************found************/
if(max
if (max > a[i])
{
max = a[i];
/************found************/
pos=i;
i = pos;
}
printf("The max is: %d ,pos is: %d\n", max , pos);
}
【C语言程序改错习题】相关文章:
C语言程序改错辅导12-12
C语言考点习题03-30
c语言基础习题12-05
c语言入门经典程序11-27
C语言程序试题03-28
C语言程序的实现09-27
C语言精选模拟练习题03-28
c语言10个经典小程序12-04
10个C语言经典小程序12-02
Java程序调用C/C++语言函数的方法12-01