简单的a+b (Java代码) 摘要:import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; impo…… 题解列表 2022年05月28日 0 点赞 0 评论 742 浏览 评分:9.9
1000:求开朗的a+b 摘要:解题思路:首先我们要定义两个数,然后把它们的和相加。注意事项:此题不止一种写法。参考代码:(1)#include<bits/stdc++.h>using namespace std;int main(…… 题解列表 2022年05月07日 0 点赞 0 评论 644 浏览 评分:9.9
题解 1000: [竞赛入门]简单的a+b 摘要:###思路 `while(cin>>)`即可 ###代码 ```cpp #include using namespace std; int main() { int a,b; …… 题解列表 2024年02月06日 1 点赞 0 评论 142 浏览 评分: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 评论 107 浏览 评分:9.9
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 评论 168 浏览 评分:9.9
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:这道题我用了两种方法。 解这道题需要一些基础知识: 1.scanf("输入模式",地址列表);//输入语句及其格式。注:地址列表一定要加取地址符号&,如:&a,&b。 2.printf("输出模…… 题解列表 2019年12月13日 0 点赞 2 评论 1747 浏览 评分:9.9
简单的a+b(c语言代码) 摘要:解题思路:定义两个数a和b,然后用scanf语句输入这两个数,最后用printf语句输出a+b注意事项:注意本题要求多组测试数据,使用while(scanf("%d%d",&a,&b)!=EOF)实现…… 题解列表 2022年07月25日 0 点赞 0 评论 263 浏览 评分:9.9
[竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b)) pr…… 题解列表 2021年08月09日 0 点赞 0 评论 895 浏览 评分:9.9
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) …… 题解列表 2024年12月01日 3 点赞 0 评论 353 浏览 评分:9.9
while 连续输入值(简单的a+b) 摘要:解题思路:使用while 语句输入的小技巧注意事项:注意连续输入参考代码:#include<stdio.h>int main(){ int a,b,t; while(scanf("%d %…… 题解列表 2022年07月07日 0 点赞 0 评论 328 浏览 评分:9.9