注意事项:在这报运行错误,vs2010没报错,看到的同学能给个解答嘛
参考代码:
#include <stdio.h>
#include<stdlib.h>
void change_max(int b[]);
void change_min(int c[]);
int main()
{
int a[10],i;
for(i=0;i<10;i++)
scanf("%d",&a[i]);
change_max(a);
change_min(a);
for(i=0;i<10;i++)
printf("%d ",a[i]);
system("pause");
return 0;
}
void change_max(int b[])
{
int s,m,max,temp;
max=b[0];
for(s=1;s<10;s++)
{
if(b[s]>max)
{
max=b[s];
m=s;
}
}
temp=b[9];
b[9]=b[m];
b[m]=temp;
}
void change_min(int c[])
{
int t,n,min,term;
min=c[0];
for(t=1;t<10;t++)
{
if(c[t]<min)
{
min=c[t];
n=t;
}
}
term=c[0];
c[0]=c[n];
c[n]=term;
}
0.0分
0 人评分
多输入输出练习1 (C语言代码)浏览:1219 |
C语言程序设计教程(第三版)课后习题1.6 (C++代码)浏览:909 |
蛇行矩阵 (C语言代码)浏览:792 |
1071题解浏览:585 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |
敲七 (C语言代码)浏览:2747 |
多输入输出练习2 (C语言代码)浏览:1710 |
C语言程序设计教程(第三版)课后习题10.7 指针(C语言代码)浏览:597 |
C语言训练-求PI* (C语言代码)浏览:520 |
A+B for Input-Output Practice (I) (C语言代码)浏览:621 |