1202: 多输入输出练习1(20行) (不调API纯算法) ( 不用类型转换) 摘要:```java 对于这道题,就是只要找出一行中最大的数,我们只需要将最大的数放在一个变量(max)中,在循环中遇到更大的覆盖既可 循环中出现的i变量是为了初始化max,也就是默认第一个输入的数为最…… 题解列表 2022年05月12日 0 点赞 0 评论 520 浏览 评分:9.9
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int max = 0; while(…… 题解列表 2022年03月28日 0 点赞 0 评论 117 浏览 评分:0.0
看错题目,以为又是一个文本整个内容输入,他这个是一行一行输入的数据, 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> #include<stdlib.h> #include<ctype.h> in…… 题解列表 2022年03月06日 0 点赞 0 评论 159 浏览 评分:0.0
1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:while True: try: l=list(map(int,input().split())) h=[] …… 题解列表 2022年02月12日 0 点赞 0 评论 395 浏览 评分:6.0
Hifipsysta-1202-多输入输出练习1(C++代码) 摘要:```cpp #include #include #include using namespace std; bool arrange_rule(int a, int b){ …… 题解列表 2022年02月05日 0 点赞 0 评论 125 浏览 评分:0.0
1202: 多输入输出练习1 摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,…… 题解列表 2022年01月01日 0 点赞 0 评论 133 浏览 评分:0.0
多输入输出练习1(数组解法) 摘要:解题思路:注意事项:在输入为零的时候记得要将最大值置零。参考代码:#include<stdio.h>int main(){ int i=0; int max; int a[1000]; int fla…… 题解列表 2021年12月20日 0 点赞 0 评论 166 浏览 评分:0.0
题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ int b=1,c[100],d,e,i; while(sc…… 题解列表 2021年11月08日 0 点赞 0 评论 579 浏览 评分:6.0
题解 1202: 多输入输出练习1 摘要:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int x; int y; while(scanf("%d",&x)!=E…… 题解列表 2021年05月21日 0 点赞 0 评论 188 浏览 评分:0.0
多输入输出练习1-题解(Java代码) 20行!!! 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Collections; import java.util.Scanner;…… 题解列表 2021年02月16日 0 点赞 0 评论 642 浏览 评分:0.0