输入两个数 输出其中最大数c 语言编程

日期:2016-05-26 11:45:17 人气:1

输入两个数 输出其中最大数c 语言编程

#inlcude main() { int a,b t; printf("input a,b\n"); scanf("%d%d",&a,&b); if(a>b) t=a; else t=b; printf("%d\n",t) }
    A+
热门评论