题解 1267: A+B Problem

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

筛选

P1000 (C语言代码)

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

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); print……

P1000 (C语言代码)

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

P1000 (一句代码不用写!)

摘要:解题思路:真的一句代码不用写,编辑器默认的代码复制过来就能用。注意事项:学会复制粘贴就可以。参考代码:#include<stdio.h> int main() {     int a,b;  ……

P1000 (Java代码)

摘要:解题思路:应该没人会看吧注意事项:我本来以为会是高精度的算法,后来看了看题解,是我想多了,但是如果数据大了的话可能还会用到吧        :)。参考代码:import java.math.BigIn……

P1000 (C语言代码)

摘要:解题思路:     这道题很简单,主要是输入输出;注意事项:      不要忘记符号参考代码:#include <stdio.h>int main(){    int a,b;    scanf("%……

P1000 (C语言代码)

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

P1000-题解(C语言代码)

摘要:没什么难的,不要被“自然数”吓到了,定义成int就可以A了 ```c #include int main() { int a,b; scanf("%d%d", &a,……