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

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

筛选

简单的a+b 十分简单

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ cout<<a……

"简单的a+b"题解

摘要:解题思路:无注意事项:此题是求多组数据,可用while(cin>>a>>b)来输入每一组数据;为了格式,所以得在输出后加上\n转义字符或endl来换行参考代码:#include<iostream>us……

简单的a+b 题解

摘要:解题思路:输入ab,输出a+b注意事项:参考代码:#include<iostream>               using namespace std;                int ma……

简单的a+b(Python代码)

摘要:解题思路:while实现多组数据输入测试,用map函数实现输入,print语句输出注意事项:参考代码:while True:    try:        a,b=map(int,input().st……

简单的a+b(java代码)

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

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

摘要:解题思路:注意事项:参考代码:解法一:#include <cstdio> int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF)//也可以写成whil……

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

摘要:解题思路:定义两个数a和b,然后用scanf语句输入这两个数,最后用printf语句输出a+b注意事项:注意本题要求多组测试数据,使用while(scanf("%d%d",&a,&b)!=EOF)实现……