题解 1267: A+B Problem

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

筛选

A+B Problem(python)

摘要:解题思路:怎么同时输入多个数字 用map注意事项:参考代码: a,b=map(int,input().split())print(a+b)……

A+B Problem给个好评

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

编写题解 1267: A+B Problem

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

编写题解 1267: A+B Problem

摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())#map()方法将字符串转化为整型 print(a+b)……

题解 1267: A+B Problem

摘要:解题思路:加一下参考代码:#include<iostream>using namespace std;int main(){    int a,b;   cin>>a>>b;   cout<<a+b;……

P1000 3行结束

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

A+B Problem(python)

摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)……

这么简单的题还属于中档题?

摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d %d",&a,&b);  ……

1267: A+B Problem题解

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

编写题解 1267: A+B Problem

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