题解 1202: 多输入输出练习1

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1202: 多输入输出练习1

摘要:解题思路:注意事项:参考代码:while True:     try:         l=list(map(int,input().split()))         h=[]       ……

1202: 多输入输出练习1

摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,……

多输入输出练习1(数组解法)

摘要:解题思路:注意事项:在输入为零的时候记得要将最大值置零。参考代码:#include<stdio.h>int main(){ int i=0; int max; int a[1000]; int fla……