[竞赛入门]简单的a+b 摘要:解题思路:懒得写注意事项:无参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)…… 题解列表 2023年05月17日 0 点赞 2 评论 45 浏览 评分:6.0
留住了塔没留住她:[竞赛入门]简单的a+b 摘要:解题思路: 我们可以定义两个变量a和b 由于题目输入数据数量不限所以我们要用while(cin>>a>>b) cout就是输出,(a+b)就是求a+b的和 …… 题解列表 2023年04月27日 0 点赞 0 评论 146 浏览 评分:9.9
1000题: 循环计算a+b 摘要:自己写代码的难点: 局限于用for循环,循环加载输入数字后,无法做到循环输出对应的结果; 自己代码: #include int main() { int a,b; f…… 题解列表 2023年04月24日 0 点赞 0 评论 51 浏览 评分:0.0
java计算多组a+b 摘要:解题思路:注意事项:参考代码:package lianxi;import java.util.Scanner;public class 计算多个a加b的值 { public static voi…… 题解列表 2023年04月21日 0 点赞 0 评论 225 浏览 评分: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
A+B c语言题解 摘要:解题思路:注意事项:难点在于退出循环,具体可以去搜“~”的用法,这虽然不是最优解,可以把它当成一种变式参考代码:#include<stdio.h>int main(void){ int a=0,b=0…… 题解列表 2023年03月23日 0 点赞 0 评论 79 浏览 评分:0.0
LikeWater - 1000: [竞赛入门]简单的a+b(很难相信这道题的正确率居然只有51%!!) 摘要:#这道题的特点是不用写,直接点提交就行了,因为已经帮你写好了。 ```cpp #include using namespace std; int main() { int a,b;…… 题解列表 2023年03月12日 0 点赞 0 评论 120 浏览 评分:2.0
简单的a+b (C语言代码) 摘要:解题思路:这道题目的重点是scanf函数。函数名: scanf 功 能: 执行格式化输入 用 法: int scanf(char *format[,argument,...]);scanf()函数是通…… 题解列表 2023年02月25日 0 点赞 0 评论 103 浏览 评分: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 评论 1153 浏览 评分: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 评论 167 浏览 评分:9.9