1000: [竞赛入门]简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 6 点赞 0 评论 696 浏览 评分:10.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a, b; // 使用循环来处理多组测试数据 while (scanf("%d %…… 题解列表 2024年12月05日 7 点赞 1 评论 1005 浏览 评分:10.0
简单的a+b 十分简单 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ cout<<a…… 题解列表 2022年09月30日 0 点赞 0 评论 311 浏览 评分:9.9
简单的a+b(C++代码) 摘要:解题思路:利用while循环判断输入的数据注意事项:主要换行操作参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2022年12月09日 0 点赞 0 评论 224 浏览 评分: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 评论 106 浏览 评分:9.9
一看就懂,简单解决 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a, b; while (scanf("%d%d", &a, &b) == 2) { …… 题解列表 2023年07月06日 0 点赞 0 评论 163 浏览 评分:9.9
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:解题思路:运用循环,求 a ,b的合。 注意事项:1.注意是输入多组数据,所以要用上循环。2.注意格式。参考代码:#include<stdio.h>int main(){ int a=0,b=0…… 题解列表 2020年11月15日 0 点赞 1 评论 1152 浏览 评分:9.9
简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2022年05月15日 0 点赞 0 评论 867 浏览 评分:9.9
直接提交,不用任何操作 摘要:当你点开这个题目,你就可以提交了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。…… 题解列表 2023年01月09日 0 点赞 0 评论 185 浏览 评分:9.9
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:这道题我用了两种方法。 解这道题需要一些基础知识: 1.scanf("输入模式",地址列表);//输入语句及其格式。注:地址列表一定要加取地址符号&,如:&a,&b。 2.printf("输出模…… 题解列表 2019年12月13日 0 点赞 2 评论 1747 浏览 评分:9.9