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

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

筛选

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

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

有事找出家人

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

简单的a+b题解

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

#include<stdio.h>

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string> using namespace std; int main(){ char a,b[999]; int……

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

摘要:解题思路:    简单的加法,使用while循环即可参考代码:    while True:            n = list(map(int,input().split()))        ……

简单代码易理解

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

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

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

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

摘要:解题思路:#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b)    {     cout……

论作弊狂魔怎样解出1000

摘要:解题思路:我们可以直接点运行,啥都不用干。注意事项:无参考代码:#include<stdio.h>int main(){    int a,b;    while(~scanf("%d%d", &a,……