编写题解 1000: [竞赛入门]简单的a+b(Java版本) 摘要:```java //第一个程序,开始你的竞赛生涯吧!!!```java public class Main { public static void main(String[] args) { …… 题解列表 2024年12月11日 0 点赞 0 评论 591 浏览 评分:0.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a, b; // 使用循环来处理多组测试数据 while (scanf("%d %…… 题解列表 2024年12月05日 7 点赞 1 评论 995 浏览 评分:10.0
1000: [竞赛入门]简单的a+b题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 6 点赞 0 评论 691 浏览 评分:10.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 3 点赞 0 评论 350 浏览 评分:9.9
a+b so easy [竞赛入门]简单的a+b 摘要:```cpp #include using namespace std; int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年11月28日 4 点赞 0 评论 281 浏览 评分:6.0
详细解释,成为高手第一步 摘要:解题思路:注意事项:参考代码:#include <stdio.h> //这是引入标准输入输出库,因为我们要使用 scanf 和 printf 函数。int main() { …… 题解列表 2024年11月19日 3 点赞 0 评论 206 浏览 评分:0.0
a+b简单写法 摘要:解题思路:用if限定范围不超过2^10,或者排除2^10之外的数,然后进行简单的加减注意事项:参考代码:#include<stdio.h>int main(){ int a,b; whil…… 题解列表 2024年11月05日 1 点赞 0 评论 262 浏览 评分:9.9
C++[竞赛入门]简单的a+b题解 摘要:题目答案: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 题解列表 2024年11月04日 0 点赞 0 评论 103 浏览 评分:0.0
佷简单,C++代码 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout<<(a+b)<<e…… 题解列表 2024年09月24日 0 点赞 2 评论 138 浏览 评分:3.4
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年09月01日 0 点赞 0 评论 168 浏览 评分:0.0