int main(){
int a[5]={23,45,67,29,78};
for (int i=0; i<4; i++) {
for (int j=i+1;j<5;j++){
if (a[i]>a[j]) {
int temp;
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
for (int i=0; i<5; i++){
printf("%d\t",a[i]);
}
return 0;
}*/
//maopao冒泡排序
//int main (){
// int a[5]={23,45,67,29,78};
//
// for (int i=0; i<4; i++) {
// for (int j=0; j<4-i; j++) {
// if (a[j]>a[j+1]) {
// int temp;
// temp=a[j];
// a[j]=a[j+1];
// a[j+1]=temp;
// }
// }
// }
// for (int i=0; i<5; i++) {
// printf("%d\t",a[i]);
// }
// return 0;
//}
为什么每次我都不会调用函数呢?有什么简单快速的方法???
|
|