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
题解 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 评论 516 浏览 评分:6.0
1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:while True: try: l=list(map(int,input().split())) h=[] …… 题解列表 2022年02月12日 0 点赞 0 评论 323 浏览 评分:6.0
多输入输出练习1 (C语言代码)给定很多行数据,要求输出每一行的最大值。注意输入输出的格式要求 摘要:参考代码如下:#include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { int outpu…… 题解列表 2018年04月16日 5 点赞 1 评论 3635 浏览 评分:6.2
多输入输出练习1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,tem; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年09月04日 3 点赞 0 评论 1315 浏览 评分:7.3
多输入输出练习1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int n,max=0; while (scanf("%d",&n)==1) { …… 题解列表 2017年12月01日 2 点赞 1 评论 1495 浏览 评分:8.0
多输入输出练习1-题解(C语言代码)值得参考 摘要: #include int main() { int i,j,k,n,max=-10000; while(scanf("%d",&n)!=…… 题解列表 2019年12月01日 0 点赞 0 评论 853 浏览 评分:8.4
多输入输出练习1 摘要:# #include int main() { int x,max; while(scanf("%d",&x)!=EOF) { …… 题解列表 2022年12月28日 0 点赞 0 评论 174 浏览 评分:9.9
多输入输出练习1-题解(Python代码) 摘要:```python while True: ls = list() ls=map(int,input().split()) max=-999999 …… 题解列表 2020年02月24日 0 点赞 0 评论 665 浏览 评分:9.9
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> int main() { int n; int j; j = 0; int…… 题解列表 2023年01月10日 0 点赞 0 评论 231 浏览 评分:9.9