简单的a+b (C语言代码) 摘要:解题思路:需要输入参数和输出注意事项:需要判断参数的输入大小;参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d", &a, &b…… 题解列表 2017年08月23日 0 点赞 2 评论 943 浏览 评分:9.9
简单的a+b(C++代码) 摘要:解题思路:首先设置两个加数,再输入,然后算出答案输出注意事项:注意是多组数据提交,要用上while循环,查看是否输入参考代码:#include<iostream>using namespace std…… 题解列表 2022年06月19日 0 点赞 1 评论 416 浏览 评分:9.9
编写题解 1000: [竞赛入门]简单的a+b 摘要:#include<stdio.h> /* 关于~的作用解析: 1、在Windows下,用户按下CTRL+Z(会看到一个^Z字符),会停止输入流,scanf会返回-1。 2、-1的补码为11…… 题解列表 2023年03月24日 0 点赞 0 评论 164 浏览 评分:9.9
1000: [竞赛入门]简单的a+b 摘要:解题思路:利用while,且在里面输入并!=EOF,然后再用if对A,B值范围限定为1024.注意事项:参考代码:#include<stdio.h>int main(){ int a,b; …… 题解列表 2022年04月07日 0 点赞 0 评论 741 浏览 评分: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 摘要: #include int main() { int a,b; //定义两个变量a,b while(~scanf("%d%d",&a,&b)) //非零则继续循环~…… 题解列表 2022年07月08日 0 点赞 0 评论 211 浏览 评分: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
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语言代码) 摘要:解题思路:定义两个数a和b,然后用scanf语句输入这两个数,最后用printf语句输出a+b注意事项:注意本题要求多组测试数据,使用while(scanf("%d%d",&a,&b)!=EOF)实现…… 题解列表 2022年07月25日 0 点赞 0 评论 262 浏览 评分:9.9