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

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

筛选

简单的a+b题解

摘要:解题思路:注意事项:参考代码:while True:#while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的   try:   #Python 中,用try except……

有事找出家人

摘要:解题思路:原题链接:[竞赛入门]简单的a+b[编码入门]简单的a+b题解(C语言代码)代码中使用到“!=EOF”,EOF是一个计算机术语,为“End Of File”的缩写,是文件结尾标志;“!=EO……

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

摘要:解题思路:注意事项:注意符号和细节的东西参考代码#include<stdio.h>int main(){    int a=0,b=0;    while(~scanf("%d%d", &a, &b)……

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

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

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

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

[竞赛入门]简单的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 C写法

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

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

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

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

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

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

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