1086A+B(2)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); long long a,b; while(n) { scanf(…… 题解列表 2024年05月29日 0 点赞 0 评论 164 浏览 评分:0.0
A+B for Input-Output Practice (III) 摘要:#include<iostream>using namespace std;int main(){ int i; int num; int a,b; cin>>num; for(i=0;i<num;i…… 题解列表 2021年03月31日 0 点赞 0 评论 124 浏览 评分:0.0
A+B for Input-Output Practice (II) (C++代码) 摘要:#include<iostream> using namespace std; int main() { int a,b,n; cin>>n; for(int i=…… 题解列表 2018年09月28日 0 点赞 0 评论 559 浏览 评分:0.0
A+B for Input-Output Practice (II) 摘要:解题思路:不就是加法嘛!弄了个英文就不会了?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n,a,b;int main(){ …… 题解列表 2022年05月07日 0 点赞 0 评论 104 浏览 评分:0.0
1086: A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:scanf输入注意事项: 对于两个scanf ,第一个scanf输入数字完要回车才能进入到下一个scanf的数字输入。 …… 题解列表 2023年08月27日 0 点赞 0 评论 65 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",&a,&b); printf…… 题解列表 2017年07月12日 0 点赞 0 评论 806 浏览 评分:0.0
A+B for Input-Output Practice (II)-题解(C语言代码) 摘要:解题思路:申请相应大小的空间,避免浪费注意事项:循环时可以进行语句的嵌套参考代码:#include<stdio.h> #include<malloc.h> int main() { int …… 题解列表 2020年12月25日 0 点赞 0 评论 170 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:你输入的第一个变量是控制你的后面的行数,所以,要将他放在循环的外面然后后面的每一组输入就是你的计算的a+b,这个对应于每一次for循环。注意事项:for循环的次数,别的没有什么注意的。参考代…… 题解列表 2017年09月23日 1 点赞 1 评论 1126 浏览 评分:0.0
编写题解 1086: A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:参考代码:n = int(input())while True: a = list(map(int,input().split())) if len(a) == …… 题解列表 2022年05月31日 0 点赞 0 评论 116 浏览 评分:0.0
A+B for Input-Output Practice (II) ,C++解题 摘要:解题思路:用while注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int k; i…… 题解列表 2022年06月07日 0 点赞 0 评论 136 浏览 评分:0.0