C语言编程题:输入4个整数,要求按由小到大顺序输出怎么编啊?(要用switch case语句)

日期:2009-12-09 18:35:19 人气:3

C语言编程题:输入4个整数,要求按由小到大顺序输出怎么编啊?(要用switch case语句)

#include main() { int i,j,temp; int a[4]; printf("Please you input the four number you want to campare!\n"); for(i=0;i<4;i++) /*输入要比较的四个数字*/ scanf ("%d,",&a[i]); for(j=0;j<4;j++)/*采用冒泡排序法排序*/
    A+
热门评论