[竞赛入门]简单的a+b-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n…… 题解列表 2021年02月02日 0 点赞 0 评论 145 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:解题思路:注意事项:不难参考代码:#include<stdio.h>int main(){int a,b;while(~scanf("%d%d", &a, &b))printf("%d\n",a+b)…… 题解列表 2021年02月05日 0 点赞 0 评论 136 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:```c #include int main(void) { int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%…… 题解列表 2021年02月06日 0 点赞 0 评论 128 浏览 评分: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
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-题解(Python代码) 摘要:解题思路:注意事项:while True,让它能循环运行(自己就错在这里)参考代码:while True: a, b = map(int, input().split()) print(a…… 题解列表 2021年02月18日 0 点赞 0 评论 476 浏览 评分:5.5
简单明了,易于初学者了解 摘要:解题思路: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 摘要:解题思路:首先input输入两个int型整数,然后求和打印出来注意事项:while可以一直循环参考代码:while True: a,b = map(int,input().split()) …… 题解列表 2021年03月26日 0 点赞 0 评论 756 浏览 评分:7.8
题目 1000: [竞赛入门]简单的a+b(c语言) 摘要:解题思路:这是很简单的一道题,重点是输入多组数据进行输出。 我们可以通过循环来处理这个问题,我开始考虑的是用while=1进行循环处理,但输出超限 。所以我们反过来想让while中输入的不等…… 题解列表 2021年05月23日 0 点赞 0 评论 267 浏览 评分:6.0
1000: [竞赛入门]简单的a+b 摘要:解题思路:用while循环输出a+b注意事项:别选错语言参考代码:#include<iostream> using namespace std; int main() { int a,…… 题解列表 2021年05月24日 0 点赞 0 评论 123 浏览 评分:0.0