摘要: 嵌套的IF-ELSE 判断三个数字的大小 #include <stdio.h> int main() { int a = 0,b = 0,c = 0; scanf("%d,%d,%d",&a,&b,&c); int max; if (a > b){ if (a > c){ max = a; }els 阅读全文
posted @ 2021-09-01 01:11 _在远方 阅读(430) 评论(0) 推荐(0)