摘要: 基本情况(不多组) 输入a、b(空格隔开),输出a+b 样例输入 3 4 样例输出 7 程序 #include<stdio.h> int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d\n",a+b); return 0; } 已知个数的多组输入 输 阅读全文
posted @ 2021-11-13 14:37 JohnLu 阅读(1543) 评论(0) 推荐(0)