解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
#include<math.h>
int main()
{
int a[10];
int i,j,min=0,max=0;
int temp;
for(i=0;i<10;i++)
{
scanf("%d",&a[i]);
}
for(j=0;j<10;j++)
{
if(a[j]<a[min])
{
min=j;
}
}
if(min!=0)
{
temp=a[0];
a[0]=a[min];
a[min]=temp;
}
for(i=0;i<10;i++)
{
if(a[i]>a[max])
{
max=i;
}
}
if (max!=0)
{
temp=a[9];
a[9]=a[max];
a[max]=temp;
}
for(i=0;i<10;i++)
{
printf("%d ",a[i]);
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:582 |
文科生的悲哀 (C语言代码)浏览:1538 |
C语言程序设计教程(第三版)课后习题1.5 (C++代码)浏览:419 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:617 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:648 |
1224题解浏览:521 |
金额的中文大写浏览:3751 |
1227题解浏览:582 |
开心的金明浏览:1812 |
Manchester- 陶陶摘苹果浏览:4840 |