1089: A+B for Input-Output Practice (V) 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int n,m,a,sum; cin >> n; …… 题解列表 2021年12月15日 0 点赞 0 评论 154 浏览 评分:0.0
A+B for Input-Output Practice (V)-题解(C++代码) 摘要:解题思路:注意事项: 见注释参考代码:#include<iostream> using namespace std; int main() { // operation …… 题解列表 2020年09月11日 0 点赞 0 评论 226 浏览 评分:0.0
1089A+B(5)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); while(n!=0) { int m; scanf("%d"…… 题解列表 2024年05月29日 0 点赞 0 评论 84 浏览 评分:0.0
WU-A+B for Input-Output Practice (V) (C语言代码) 摘要:参考代码:#include<stdio.h> void sum(int n) { int a,sum=0,i=0; char c; while(i<n) { scanf…… 题解列表 2017年12月16日 2 点赞 0 评论 883 浏览 评分:0.0
A+B for Input-Output Practice (V)-题解(C语言代码)(容易懂) 摘要:题目: Your task is to calculate the sum of some integers. 你的任务是计算一些整数的和。 Input contains an integer …… 题解列表 2020年03月02日 0 点赞 0 评论 254 浏览 评分:0.0
在我上一个题解基础下,加上前面那个scanf就可以了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum,j,p;//注意多定义两个 scanf("…… 题解列表 2025年01月12日 0 点赞 0 评论 18 浏览 评分:0.0
题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:最开始看这个题,要想到嵌套循环,然后最开始我错了是因为sum=0没打进去,第二个变成25就是把第一个数值也加进去注意事项:参考代码:#include<iostream>using names…… 题解列表 2022年07月23日 0 点赞 0 评论 79 浏览 评分:0.0
A+B for Input-Output Practice (V)-题解(C语言代码) 摘要: #include void main() { int i,j,n,n1,sum,a,b[20]; scanf("%d",&n); for…… 题解列表 2019年08月07日 0 点赞 0 评论 431 浏览 评分:0.0
A+B for Input-Output Practice (V) (C语言代码) 摘要:解题思路:就是多个循环嵌套,没什么的注意事项:注意循环次数问题参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int a,b,c,d; sca…… 题解列表 2017年09月23日 0 点赞 0 评论 746 浏览 评分:0.0
计算整数总和(新玩法) 摘要:题目描述 你的任务是计算一些整数的总和。 输入格式 输入在第一行中包含整数 N,然后是 N 行。每行都以整数 M 开头,然后 M 整数跟在同一行中。 输出格式 对于每组输入整数,您应…… 题解列表 2024年08月22日 0 点赞 0 评论 48 浏览 评分:0.0