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
一个循环解决 摘要:Scanner scanner=new Scanner(System.in); int n=scanner.nextInt(); for (int i = 1; i <=n; i++) { …… 题解列表 2024年03月26日 0 点赞 0 评论 234 浏览 评分:9.9
A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; int arr[100]; int sum = 0; c…… 题解列表 2024年03月07日 0 点赞 0 评论 114 浏览 评分:0.0
题解 1086: A+B for Input-Output Practice (II) 摘要:`for`枚举1到n即可 ```cpp #include using namespace std; int main(){ long long a,b; int n; cin>>n…… 题解列表 2024年02月25日 0 点赞 0 评论 176 浏览 评分:9.9
直接使用自带的while循环,然后多一行直接处理第一句即可 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年01月19日 0 点赞 0 评论 68 浏览 评分:0.0
好写》好写 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b; int n; cin >> n…… 题解列表 2024年01月02日 0 点赞 0 评论 203 浏览 评分:9.9
A+B for Input-Output Practice (II) python代码 摘要:这几个题真的有点没活了,实在不行去咬打火机,pass意思就是跳过,数组的长度小于等于1passwhile True: try: a = list(map(int, input().…… 题解列表 2023年12月03日 0 点赞 0 评论 54 浏览 评分:0.0
1086: A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:scanf输入注意事项: 对于两个scanf ,第一个scanf输入数字完要回车才能进入到下一个scanf的数字输入。 …… 题解列表 2023年08月27日 0 点赞 0 评论 65 浏览 评分:0.0
数组加for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,k=0; int a,b,c[100]; scanf("%d",&n); …… 题解列表 2023年05月27日 0 点赞 0 评论 440 浏览 评分:9.9
题目 1086: A+B for Input-Output Practice (II) (C语言) 摘要:#include int main() { int a, b, n, i; scanf("%d", &n); for (i = 0; i < n; i++) …… 题解列表 2023年04月09日 0 点赞 0 评论 271 浏览 评分:6.0