0001

来源:互联网 发布:深圳知电科技有限公司 编辑:程序博客网 时间:2024/06/06 18:56
#include <stdio.h>main(){    int a,b,max;    printf("Input a,b:");    scanf("%d,%d",&a,&b);    if(a>b) max=a;    if(a<=b) max=b;    printf("max=%d\n",max);}
原创粉丝点击