1132: C语言训练-最大数问题 python 摘要:解题思路:注意事项:因为-1是结束,所以要先移除-1这个值,否则在负数输入的时候会导致错误结果参考代码:list1 = list(map(int,input().split())) while li…… 题解列表 2021年04月25日 0 点赞 0 评论 454 浏览 评分:9.9
C语言训练-最大数问题 摘要:解题思路:注意事项:参考代码:a = 1alist = []while a: alist += list(map(int, input().split())) if -1 in alist…… 题解列表 2021年06月16日 0 点赞 0 评论 235 浏览 评分:0.0
【C++较复杂版解法】 摘要:解题思路:while循环同时实现输入整数和判断是否为结束标志-1每输入一个数就和max比较一次大小max取更大的值注意事项:这题很容易被-1这个陷阱蛊惑,因为-1作为结束标志不参与,但是比-1小的数是…… 题解列表 2021年06月19日 0 点赞 0 评论 124 浏览 评分:0.0
C语言训练-最大数问题-题解(C++代码)二叉树multiset与迭代器运用 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<set> using namespace std;int main(){ int a,z; multis…… 题解列表 2021年08月14日 0 点赞 0 评论 167 浏览 评分:0.0
C语言训练-最大数问题-题解(c语言) 摘要:```c #include int main() { int n; int a[100]; int i=0; int temp; while(scanf("%d",&n)==…… 题解列表 2021年08月25日 0 点赞 0 评论 183 浏览 评分:0.0
编写题解 1132: 最大数问题 数组 通俗易懂 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[100],i,j=0,max; for(i=0…… 题解列表 2021年11月05日 0 点赞 0 评论 854 浏览 评分:9.9
C语言训练-最大数问题-----详解!!!-----【Python】 摘要:解析:数入一组数中判断是否有-1,将-1前的数放入到列表n中,如果没有-1将循环执行t.extend扩充列表,直到有-1时跳出循环。最后用max函数求出最大值。 ```python t=list(…… 题解列表 2021年11月05日 0 点赞 3 评论 354 浏览 评分:7.3
C语言训练-最大数问题-题解------------Python代码 摘要:解题思路:注意事项:参考代码:lis = list(map(int, input().split()))while lis[-1] != -1: lis.extend(list(map(int,…… 题解列表 2022年01月09日 0 点赞 0 评论 162 浏览 评分:0.0
1132: C语言训练-最大数问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,i;void fun1(int n){ while(n!=-1) { if(n>i) …… 题解列表 2022年01月24日 0 点赞 0 评论 159 浏览 评分:0.0
题解 1132: C语言训练-最大数问题 摘要:思路:让一个变量(设为a)保存输入的数,另一个变量(设为b)保存最大值,a会不断的被新来的数覆盖,而b则始终是最大值;参考代码:我刚开始的代码#include <stdio.h> int main(…… 题解列表 2022年02月14日 0 点赞 0 评论 145 浏览 评分:0.0