最大数问题(超简单思路C++) 摘要:解题思路:让t不断改变成数组里面较大的数注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[88]…… 题解列表 2022年10月26日 0 点赞 0 评论 114 浏览 评分:9.9
1132基础解法(Python) 摘要:注意事项:用sys.stdin避免输入异常,此题因为-1即表示终止,且不存在多个-1或者-1后仍有输入的情形,所以难度大大降低参考代码:import syslst = []for line in sy…… 题解列表 2022年11月05日 0 点赞 0 评论 84 浏览 评分:0.0
最直观的解题思路 摘要:### 不要想的太复杂,年轻人! ```c #include int main(void) { int temp,max = -214570227; while(1) …… 题解列表 2022年11月13日 0 点赞 0 评论 207 浏览 评分:9.5
吾乃元始天尊!!!1132: C语言训练-最大数问题 摘要:```cpp #include using namespace std; int a[10005]; int main() { int i=0,n=0; while(cin>>a[…… 题解列表 2022年12月14日 0 点赞 0 评论 240 浏览 评分:9.9
while循环题解,就是感觉比for方便 摘要:解题思路:首先,在众多数中比较最大的数,我们首先就想到循环语句,就可以多次连续输入; 然后,输入-1结束,那就是不能等于-1咯,判定这个条件就行; …… 题解列表 2023年04月16日 0 点赞 0 评论 52 浏览 评分:0.0
c代码记录之最大数问题 摘要:解题思路:注意事项:-1仅标记输入结束,不参与比较参考代码:#include<stdio.h> #include<stdlib.h> int main(){ int *num; …… 题解列表 2023年11月14日 0 点赞 0 评论 42 浏览 评分:0.0
C语言训练-最大数问题(易错点在于给max的初值,如果给max赋0的话,但给的数全是负数,0不在给的数之中,但是最后max会是0,只能先把给的第一个数赋给max) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,max; scanf("%d",&a); max=a; while(~sca…… 题解列表 2023年11月16日 0 点赞 0 评论 76 浏览 评分:0.0
我的很简洁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int max = -0x7fffffff; // 初始化最大值为负无穷 int num; …… 题解列表 2023年12月26日 0 点赞 0 评论 53 浏览 评分:0.0
简单最大数 摘要:解题思路:注意事项:参考代码://#define _CRT_SECURE_NO_WARNINGS//#pragma warning(disable:6031)#include<iostream>usi…… 题解列表 2024年01月15日 0 点赞 0 评论 79 浏览 评分:0.0
1132: C语言训练-最大数问题 摘要:###思路 只需一直`while(cin>>a)`然后逐一比较即可。 ###代码 ```cpp #include using namespace std; int main() { …… 题解列表 2024年02月02日 0 点赞 0 评论 122 浏览 评分:9.9