Hifipsysta-1202-多输入输出练习1(C++代码) 摘要:```cpp #include #include #include using namespace std; bool arrange_rule(int a, int b){ …… 题解列表 2022年02月05日 0 点赞 0 评论 100 浏览 评分:0.0
可AC(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, min = 0; while (scanf("%d", &n) != EOF) { if (n)…… 题解列表 2018年07月22日 0 点赞 0 评论 641 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, max,num; while (scanf("%d", &n) != EOF) …… 题解列表 2023年06月21日 0 点赞 0 评论 87 浏览 评分:0.0
看错题目,以为又是一个文本整个内容输入,他这个是一行一行输入的数据, 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> #include<stdlib.h> #include<ctype.h> in…… 题解列表 2022年03月06日 0 点赞 0 评论 128 浏览 评分:0.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 评论 150 浏览 评分:0.0
c代码记录之多输入输出问题(important) 摘要:下方代码是把0算进比较的,系统也给过了,刚开始while漏了花括号,感谢雷兄一针见血。 后面写一个不把结尾0算进比较的代码 ```c #include int main() { i…… 题解列表 2023年11月30日 0 点赞 0 评论 125 浏览 评分:0.0
多输入输出练习1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<string> #include<algorithm> using nam…… 题解列表 2019年04月04日 0 点赞 0 评论 314 浏览 评分:0.0
多输入输出练习1 (C语言代码)利用数组和memset函数 摘要:#include <stdio.h>#include <string.h> //memset函数在string.h头文件中void judge_…… 题解列表 2018年04月16日 0 点赞 0 评论 862 浏览 评分:0.0
1202: 多输入输出练习1 摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,…… 题解列表 2022年01月01日 0 点赞 0 评论 106 浏览 评分:0.0
多次输入输出每行最大值python 摘要:解题思路:注意事项:输入可能会有点问题,所以在except后面加一个EOFError参考代码:while True: try: L = list(map(int,input().s…… 题解列表 2023年03月19日 0 点赞 0 评论 116 浏览 评分:0.0