1000: [竞赛入门]简单的a+b(c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; while(ci…… 题解列表 2022年05月23日 0 点赞 0 评论 165 浏览 评分:6.0
简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2022年05月15日 0 点赞 0 评论 962 浏览 评分:9.9
[竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ while(cin>>a>…… 题解列表 2022年05月09日 0 点赞 0 评论 191 浏览 评分:0.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n",a+b); retu…… 题解列表 2022年05月07日 0 点赞 0 评论 208 浏览 评分:0.0
1000:求开朗的a+b 摘要:解题思路:首先我们要定义两个数,然后把它们的和相加。注意事项:此题不止一种写法。参考代码:(1)#include<bits/stdc++.h>using namespace std;int main(…… 题解列表 2022年05月07日 0 点赞 0 评论 742 浏览 评分:9.9
a+b非常简单 摘要:解题思路:直接求a+b注意事项:要用while,否则会错误滴参考代码:#include<iostream>#include<fstream>#include<algorithm>using names…… 题解列表 2022年05月05日 0 点赞 1 评论 448 浏览 评分:8.9
1000: [竞赛入门]简单的a+b c++代码题解 摘要:解题思路:用iostream资源库和cstdio资源库都可解题注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,…… 题解列表 2022年05月02日 0 点赞 0 评论 1348 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:解题思路:这道题就是求几个加法等式的a+b,可以结合while循环输出就行注意事项:注意要用while循环来算参考代码:#include<iostream>//头文件using namespace s…… 题解列表 2022年04月26日 0 点赞 1 评论 1238 浏览 评分:9.9
1000简单的a+b题解 摘要:解题思路:此题很简单,只需要将两个数相加即可。注意事项:并不是一组数据,而是多组,所以要用到while。重复输入输出就可以了。参考代码:#include<iostream>//所需头文件using n…… 题解列表 2022年03月27日 0 点赞 0 评论 285 浏览 评分:6.0
1000:简单而又容易出错的题 摘要:解题思路:本题很简单,但是注意此题是多组测试数据,即需要不停的接收系统的测试输入,你都可以计算结果并输出,像本人第一次输出只写了一次简单的a+b,全错QwQ:#include<cstdio>#incl…… 题解列表 2022年03月21日 0 点赞 1 评论 157 浏览 评分:8.0