参考代码:
#include<stdio.h>
void Scanf(int a[],int n){
for(int i=0;i<n;i++)
scanf("%d",&a[i]);
}
void Change(int a[],int n){
int x=a[0];
int count1,count2;
for(int i=0;i<n;i++)
{
if(x>a[i])
{x=a[i];
count1=i;
}
}
int temp;
temp=a[0];
a[0]=a[count1];
a[count1]=temp;
int y=a[0];
for(int i=0;i<n;i++)
{ if(y<a[i])
{y=a[i];
count2=i;
}
}
int temp1;
temp1=a[9];
a[9]=a[count2];
a[count2]=temp1;
}
void Printf(int a[],int n){
for(int i=0;i<n;i++)
printf("%d ",a[i]);
}
int main()
{
int a[10];
Scanf(a,10);
Change(a,10);
Printf(a,10);
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:661 |
上车人数 (C语言代码)浏览:753 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:855 |
简单的a+b (C语言代码)浏览:473 |
C二级辅导-温度转换 (C语言代码)浏览:575 |
C语言程序设计教程(第三版)课后习题11.1 (C++代码)浏览:709 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)简单循环浏览:570 |
敲七游戏 (C语言代码)浏览:1007 |
分解质因数 (C语言代码)浏览:862 |
K-进制数 (C语言代码)浏览:637 |