c语言输入3个整数按从小到大输出

日期:2018-03-30 16:28:13 人气:1

c语言输入3个整数按从小到大输出

输入三个整数,要求按从小到大的顺序输出。解题思路:此题采用依次比较的方法排出其大小顺序。 #include main() {int a,b,c,t; printf("input three number please;"); scanf("%d,%d,%d",&a,&b,&c); if (a>b) { t=b;b=a;a=t;} if (a>c) {t=c;c=a;a=t;} if (b>c) { t=c;c=b;b=t;}//
    A+
热门评论