A+B Problem 参考答案 摘要:解题思路:输入两个数。加起来。注意事项:加分号!参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin >>…… 题解列表 2023年11月01日 0 点赞 3 评论 355 浏览 评分:8.2
A+B Problem给个好评 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年11月20日 0 点赞 1 评论 449 浏览 评分:8.4
A+B Problem(python) 解题思路:怎么同时输入多个数字用map注意事项:参考代码:a,b=map(int,input().split())print(a+b) 题解列表 2023年01月04日 0 点赞 1 评论 1172 浏览 评分:8.4
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int a,b; scanf("%d %d",&a,&b); printf(…… 题解列表 2023年03月24日 0 点赞 0 评论 536 浏览 评分:8.9
编写题解 1267: A+B Problem 解题思路:注意事项:参考代码:a,b=map(int,input().split())#map()方法将字符串转化为整型print(a+b) 题解列表 2022年10月18日 0 点赞 0 评论 922 浏览 评分:9.3
题解 1267: A+B Problem 摘要:解题思路:加一下参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b;…… 题解列表 2023年04月05日 0 点赞 0 评论 467 浏览 评分:9.7
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y; cin>>x>>y; int a=…… 题解列表 2022年10月06日 0 点赞 0 评论 1020 浏览 评分:9.9
1267: A+B Problem题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 3 点赞 0 评论 1083 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年07月23日 2 点赞 0 评论 1031 浏览 评分:9.9
好好考哈回家后即可交话费 解题思路:注意事项:参考代码:whileTrue:try:a,b=map(int,input().strip().split())print(a+b)except:break 题解列表 2024年07月09日 0 点赞 0 评论 1239 浏览 评分:9.9