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

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

筛选

可AC(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, min = 0; while (scanf("%d", &n) != EOF) { if (n)……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, max,num;    while (scanf("%d", &n) != EOF)    ……

c代码记录之多输入输出问题(important)

摘要:下方代码是把0算进比较的,系统也给过了,刚开始while漏了花括号,感谢雷兄一针见血。 后面写一个不把结尾0算进比较的代码 ```c #include int main() { i……

1202: 多输入输出练习1

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

多次输入输出每行最大值python

摘要:解题思路:注意事项:输入可能会有点问题,所以在except后面加一个EOFError参考代码:while True:    try:        L = list(map(int,input().s……