摘要: #include <stdio.h>int main (){ printf("请输入月份(数字)\n"); int month = 0; scanf("%d",&month); switch (month) { case 1: printf("January\n"); break; case 2: 阅读全文
posted @ 2022-08-02 09:22 我千五可以 阅读(181) 评论(0) 推荐(0)
摘要: #include <stdio.h>int main (){int a,b,c = 0;int max = 0; printf("请输入三个数\n");scanf("%d %d %d",&a,&b,&c); if(a>=b){ max = a;}else if (b>=c){ max = b;}el 阅读全文
posted @ 2022-08-02 07:58 我千五可以 阅读(477) 评论(0) 推荐(0)