哈哈哈,没想到还有那么一题简单得不行的题吧!!! 摘要:解题思路:简简单单!注意事项:无!!参考代码:#include using namespace std; int main() { int a,b; cin>>a>>b; …… 题解列表 2022年02月15日 0 点赞 0 评论 1182 浏览 评分:6.0
A+B Problem题解 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)co…… 题解列表 2023年01月03日 0 点赞 0 评论 333 浏览 评分:6.0
P1000 (一句代码不用写!) 摘要:解题思路:真的一句代码不用写,编辑器默认的代码复制过来就能用。注意事项:学会复制粘贴就可以。参考代码:#include<stdio.h> int main() { int a,b; …… 题解列表 2019年01月19日 0 点赞 0 评论 752 浏览 评分:6.7
1267: A+B Problem 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b ; cin>>a>>b ; cout<<a+b…… 题解列表 2023年07月11日 0 点赞 0 评论 333 浏览 评分:7.3
P1000 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,sum=0; scanf("%d%d",&a,&b); sum…… 题解列表 2018年09月08日 9 点赞 0 评论 938 浏览 评分:7.6
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
P1000-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d%d",&x,&y);//输入两个数 printf(…… 题解列表 2020年06月30日 0 点赞 0 评论 535 浏览 评分:8.0
P1000(c++代码)快来看看看看吧! 摘要:解题思路:输入a,b再输出a+b.注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; …… 题解列表 2022年06月03日 0 点赞 0 评论 758 浏览 评分:8.0
原神andc++萌新出品 题解:1267: A+B Problem 摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ …… 题解列表 2023年11月12日 0 点赞 0 评论 158 浏览 评分:8.0
A+B Problem 参考答案 摘要:解题思路:输入两个数。加起来。注意事项:加分号!参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin >>…… 题解列表 2023年11月01日 0 点赞 3 评论 113 浏览 评分:8.2