题解 1000: [竞赛入门]简单的a+b

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

筛选

简单的a+b(java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

竞赛入门]简单的a+b C

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

[竞赛入门]简单的a+b

摘要:解题思路:注意事项:参考代码:while True:    a,b = map(int,input().split())    if a > 2**10 or b > 2**10:        br……

C语言简单算法:简单的a+b

摘要:解题思路:寻常加法+一个循环注意事项:需要输出多组数据参考代码:#include<stdio.h>int main(){    int a,b,c;    while (scanf("%d%d",&a……

1000: [竞赛入门]简单的a+b

摘要:import java.io.*; /**  * a + b 直接打印,没啥好说的。  */ public class Main {     public static Buff……

简单的a+b(c++代码)

摘要:``` #include using namespace std; int main() { int a,b; while(cin >>a>>b) cout ……

1000: [竞赛入门]简单的a+b C写法

摘要:解题思路:先定义两个变量,然后通过键盘输出scanf来输出自定数值,可以用while循环多次实验注意事项:参考代码:#include<stdio.h>                         ……

[竞赛入门]简单的a+b

摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d\n",a+b); ……

1000: [竞赛入门]简单的a+b题解

摘要:解题思路:使用cin,cout解题即可注意事项:注意头文件#include<iostream>参考代码:#include<iostream>using namespace std;int main()……

简单的a+b(c语言代码)

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