优质题解 简单的A+B 摘要:参考代码:#include<stdio.h>int main(){ int a=0,b=0; while(~scanf("%d%d", &a, &b)) //下面有关于~的解析 …… 题解列表 2021年07月11日 0 点赞 1 评论 785 浏览 评分:9.9
简单的a+b 题解 摘要:解题思路:hj注意事项:a参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%…… 题解列表 2021年06月20日 0 点赞 0 评论 1172 浏览 评分:7.3
简单的a+b(C语言代码) 摘要:解题思路:注意事项:~是按位取反参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d %d",&a,&b)) { …… 题解列表 2021年05月29日 0 点赞 0 评论 145 浏览 评分:0.0
1000: [竞赛入门]简单的a+b 摘要:解题思路:用while循环输出a+b注意事项:别选错语言参考代码:#include<iostream> using namespace std; int main() { int a,…… 题解列表 2021年05月24日 0 点赞 0 评论 123 浏览 评分:0.0
题目 1000: [竞赛入门]简单的a+b(c语言) 摘要:解题思路:这是很简单的一道题,重点是输入多组数据进行输出。 我们可以通过循环来处理这个问题,我开始考虑的是用while=1进行循环处理,但输出超限 。所以我们反过来想让while中输入的不等…… 题解列表 2021年05月23日 0 点赞 0 评论 268 浏览 评分:6.0
输出a+b - python 摘要:解题思路:首先input输入两个int型整数,然后求和打印出来注意事项:while可以一直循环参考代码:while True: a,b = map(int,input().split()) …… 题解列表 2021年03月26日 0 点赞 0 评论 756 浏览 评分:7.8
简单明了,易于初学者了解 摘要:解题思路:while语句的循环。注意事项:注意取值范围。参考代码:#include<stdio.h>main(){ int a=0,b=0; while(~scanf("%d%d", &a…… 题解列表 2021年03月17日 0 点赞 2 评论 607 浏览 评分:6.0
[竞赛入门]简单的a+b-题解(Python代码) 摘要:解题思路:注意事项:while True,让它能循环运行(自己就错在这里)参考代码:while True: a, b = map(int, input().split()) print(a…… 题解列表 2021年02月18日 0 点赞 0 评论 476 浏览 评分:5.5
note an easy problem2 摘要:哈哈哈#includeint main(){ int strcpy_my(int n, char c[], int m); int n, m; char a[100]; sca…… 题解列表 2021年02月15日 0 点赞 1 评论 271 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2021年02月10日 0 点赞 0 评论 187 浏览 评分:0.0