A+B for Input-Output Practice (II)-题解(C语言代码) 摘要:#include int main() { int a=0,b=0,s=0; int i; int n; scanf("%d",&n); for(i=0;i…… 题解列表 2020年02月01日 0 点赞 0 评论 392 浏览 评分:2.0
ACM基本输入输出(二)(C语言代码) 摘要:解题思路:此题相比第一道而言,会提前告诉你是几组数据,第一行的2就表示有两组数据。注意事项:参考代码(一):#include <stdio.h> int main() { int N,a,b;…… 题解列表 2019年01月05日 3 点赞 0 评论 563 浏览 评分:4.0
A+B for Input-Output Practice (II) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main {public static void main(String[] args) {Scanner…… 题解列表 2018年02月25日 2 点赞 0 评论 821 浏览 评分:4.7
1086: A+B for Input-Output Practice (II)-题解 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b,n; cin>>n; while(cin>>a>…… 题解列表 2021年10月22日 0 点赞 0 评论 255 浏览 评分:6.0
题目 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
LikeWater - 1086: A+B for Input-Output Practice (II) 摘要:```cpp #include #include using namespace std; // 编写一个程序,输入a、b、c三个值,输出其中最大值。 int main() { …… 题解列表 2023年02月27日 0 点赞 1 评论 99 浏览 评分:7.3
A+B for Input-Output Practice (II)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j; scanf("%d",&n); int a[n][2],sum[n]; for(int i=0…… 题解列表 2020年12月02日 0 点赞 0 评论 833 浏览 评分:7.3
番11 A+B for Input-Output Practice (II) (C++代码) 摘要:解题思路: c++训练,看似和1085那道题一模一样,其实多了个控制循环的;输入,故采用for循环输入会好点注意事项:参考代码:#include <iostream>using name…… 题解列表 2019年04月07日 0 点赞 1 评论 615 浏览 评分:7.5
ACM学习日记02--A+B for Input-Output Practice (II) 摘要: #include int main() { int n, a, b; scanf("%d",&n); while (n--)…… 题解列表 2019年12月15日 0 点赞 0 评论 933 浏览 评分:8.0
A+B for Input-Output Practice (II)-题解(Python代码) 摘要:核心语句:a, b= map(int, input().strip().split()) 这句话的作用是将输入的两个整数,中间以空格隔开,分别赋值给a,b ``` while True: …… 题解列表 2019年09月04日 0 点赞 1 评论 1030 浏览 评分:8.0