题解 1267: A+B Problem

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

P1000 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入两个自然数,输出他们的和  */#include <stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); print……

P1000 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y;while (scanf("%d%d",&x,&y)==2) printf("%d\n",x+y……

P1000 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){int a,b;scanf("%d %d",&a,&b);printf("%d",a+b);return 0;}……