1条回答 默认 最新
- 偷窃月亮的贼 2021-09-24 09:31关注
简单的输入输出语句:
#include <stdio.h> int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d",a+b); return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
简单的输入输出语句:
#include <stdio.h>
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}