#include <stdio.h> int main() { int a,b,c,max; printf("请输入三个数:"); scanf("%d,%d,%d",&a,&b,&c); max = b; if (a > b) { max = a; } if (c > max) { max = c; } printf("最大值是:%d\n",max); //max不在内存地址中,不用加& return 0; }
看看执行结果
在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
请发表评论