P1000 (C++代码) 摘要:解题思路:自然数可以整型表示注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; for(int i=0…… 题解列表 2018年10月09日 0 点赞 0 评论 486 浏览 评分:0.0
题解:1267: A+B Problem 摘要:解题思路:注意事项:不要打错参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月01日 0 点赞 0 评论 98 浏览 评分:0.0
简单易懂a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2022年02月11日 0 点赞 0 评论 99 浏览 评分:0.0
P1000 题解(c++简单) 摘要:解题思路:不就是加法嘛,还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;int main(){ scanf("%d…… 题解列表 2022年05月14日 0 点赞 0 评论 160 浏览 评分:0.0
编写题解 1267: A+B Problem 摘要:解题思路:1、创建变量a,b2、输入变量3、输出a+b参考代码:#include<iostream> int main (){ int a,b; cin>>a>>b; …… 题解列表 2023年07月14日 0 点赞 0 评论 54 浏览 评分:0.0
P1000-题解(C++代码) 摘要:这个 就是 a+b咯 读入a+b 然后输出a+b ```cpp #include using namespace std; int main() { long lo…… 题解列表 2019年08月29日 0 点赞 0 评论 595 浏览 评分:0.0
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月25日 0 点赞 0 评论 55 浏览 评分:0.0
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<…… 题解列表 2024年03月02日 0 点赞 0 评论 58 浏览 评分:0.0
A+B Problem题解 摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)co…… 题解列表 2023年01月03日 0 点赞 0 评论 255 浏览 评分:6.0
1267:A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a; cout<<a+b…… 题解列表 2024年01月19日 0 点赞 0 评论 308 浏览 评分:6.0