1267: A+B Problem(c++)题解 摘要:写这篇题解完全是消磨时间 代码 ```cpp #include using namespace std; int main() { int a,b; while(cin…… 题解列表 2023年05月04日 0 点赞 0 评论 387 浏览 评分:6.0
题解 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 评论 175 浏览 评分:9.7
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int a,b; scanf("%d %d",&a,&b); printf(…… 题解列表 2023年03月24日 0 点赞 0 评论 258 浏览 评分:8.9
算术表达式与顺序执行--1.A+B Problem 摘要:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a+b); retur…… 题解列表 2023年03月23日 0 点赞 0 评论 148 浏览 评分:6.0
c++解题思路 摘要:解题思路:注意事项:参考代码:#include<iosteream>using namespace std;int main(){ int a,b; cin >>a; cin >>b; …… 题解列表 2023年03月02日 0 点赞 0 评论 178 浏览 评分:6.0
1267: A+B Problem 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout…… 题解列表 2023年01月12日 0 点赞 0 评论 345 浏览 评分:8.0
A+B Problem(python) 摘要:解题思路:怎么同时输入多个数字 用map注意事项:参考代码: a,b=map(int,input().split())print(a+b)…… 题解列表 2023年01月04日 0 点赞 1 评论 849 浏览 评分:8.4
A+B Problem题解 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)co…… 题解列表 2023年01月03日 0 点赞 0 评论 332 浏览 评分:6.0
这么简单的题还属于中档题? 摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); …… 题解列表 2022年11月09日 0 点赞 0 评论 999 浏览 评分:9.9
编写题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())#map()方法将字符串转化为整型 print(a+b)…… 题解列表 2022年10月18日 0 点赞 0 评论 706 浏览 评分:9.3