LikeWater - 1000: [竞赛入门]简单的a+b(很难相信这道题的正确率居然只有51%!!) 摘要:#这道题的特点是不用写,直接点提交就行了,因为已经帮你写好了。 ```cpp #include using namespace std; int main() { int a,b;…… 题解列表 2023年03月12日 0 点赞 0 评论 349 浏览 评分:2.0
简单的a+b (C语言代码) 摘要:解题思路:这道题目的重点是scanf函数。函数名: scanf 功 能: 执行格式化输入 用 法: int scanf(char *format[,argument,...]);scanf()函数是通…… 题解列表 2023年02月25日 0 点赞 0 评论 198 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:参考代码:while True: try: a,b=map(int,input().strip().split()) print(a+b) except: break…… 题解列表 2023年02月11日 0 点赞 0 评论 1468 浏览 评分:6.0
1000: [竞赛入门]简单的a+b 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2023年02月09日 0 点赞 0 评论 275 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 标题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2023年02月07日 0 点赞 0 评论 198 浏览 评分:9.9
1000:简单的a+b 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 题解列表 2023年02月04日 0 点赞 0 评论 200 浏览 评分:0.0
简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int a,b; cin>>a>>b; int c=a+b; cou…… 题解列表 2023年02月04日 0 点赞 0 评论 150 浏览 评分:0.0
直接提交,不用任何操作 摘要:当你点开这个题目,你就可以提交了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。…… 题解列表 2023年01月09日 1 点赞 0 评论 302 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) { cou…… 题解列表 2023年01月08日 0 点赞 0 评论 195 浏览 评分:9.9
简单的a+b(C++代码) 摘要:解题思路:利用while循环判断输入的数据注意事项:主要换行操作参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2022年12月09日 0 点赞 0 评论 345 浏览 评分:9.9