#include "stdafx.h"
#include "stdlib.h"
void swap(int *a,int *b);
int main(){
//冒泡排序
int i,j,r;
int all[5];
int temp;
printf("输入5个数以空格做间隔\n");
scanf("%d%d%d%d%d",all,all+1,all+2,all+3,all+4);
for(i=0;i<5;i++){
for(int j=i+1;j<5;j++){
if(all[i]>all[j])
swap(&all[i],&all[j]);
}
}
//打印排序后的数组
for(r=0;r<5;r++)
printf("%d ",all[r]);
printf("\n");
system("pause");
}
//数值交换方法
void swap(int *a,int *b){
int temp;
temp = *a;
*a = *b;
*b = temp;
}
#include "stdlib.h"
void swap(int *a,int *b);
int main(){
//冒泡排序
int i,j,r;
int all[5];
int temp;
printf("输入5个数以空格做间隔\n");
scanf("%d%d%d%d%d",all,all+1,all+2,all+3,all+4);
for(i=0;i<5;i++){
for(int j=i+1;j<5;j++){
if(all[i]>all[j])
swap(&all[i],&all[j]);
}
}
//打印排序后的数组
for(r=0;r<5;r++)
printf("%d ",all[r]);
printf("\n");
system("pause");
}
//数值交换方法
void swap(int *a,int *b){
int temp;
temp = *a;
*a = *b;
*b = temp;
}