C语言训练-最大数问题-题解(C++代码) 摘要: ```cpp #include using namespace std; int main() { int num, max; cin >> num; max = num; …… 题解列表 2020年01月28日 0 点赞 0 评论 534 浏览 评分:9.5
C语言训练-最大数问题-题解(C++代码) sort来了 摘要:#include #include #include using namespace std; int main() {int a[1000],max; int i=0; for(i=0…… 题解列表 2020年02月09日 0 点赞 0 评论 389 浏览 评分:8.0
C语言训练-最大数问题-题解(C++代码) 摘要:```cpp #include using namespace std; typedef struct Node{ int data; struct Node *nex…… 题解列表 2020年03月13日 0 点赞 1 评论 498 浏览 评分:9.9
有没有人帮帮我怎么老是错误百分之14 摘要:```c 代码: #include int main() { int a[40],max,i=0,n,m=0; for(;n…… 题解列表 2020年03月19日 0 点赞 1 评论 370 浏览 评分:9.9
C语言训练-最大数问题-题解(Python代码) 摘要:这个代码哪里错了呢? 这个代码哪里错了呢? 这个代码哪里错了呢? 这个代码哪里错了呢? 这个代码哪里错了呢? ```python lis=list(map(int,input().spli…… 题解列表 2020年04月08日 0 点赞 1 评论 429 浏览 评分:0.0
C语言训练-仅供参考 摘要:```c #include int main() { int n,max; scanf("%d",&n); max=n; while(n!=-1){ …… 题解列表 2020年04月18日 0 点赞 0 评论 358 浏览 评分:8.0
C语言训练-最大数问题-题解(C++代码) 仅 限 c++ 做 法! 极简低奢...... 大杀器set 摘要:代码如下: ------------ #include #include //c++STL中一个很好用的一个工具 后面解释 using namespace …… 题解列表 2020年04月30日 0 点赞 0 评论 503 浏览 评分:9.4
C语言训练-最大数问题-题解(C语言代码) 摘要:```c // // Created by sairo on 2020/5/4. // #include #define MAX(a,b) a>b?a:b int main(v…… 题解列表 2020年05月04日 0 点赞 0 评论 257 浏览 评分:0.0
C语言训练-最大数问题-题解(C语言代码) 摘要: #include #define Max(a,b) a>b? a:b /* 题目要求输入若干个数,也就是说数的个数是不确定的,所以不能采用定义一个数组,把键盘输…… 题解列表 2020年05月05日 0 点赞 0 评论 1117 浏览 评分:6.0
C语言训练-最大数问题-题解(Python代码) 摘要:lst1 = [] lst2 = [] a = True while a: lst1 = list(map(int, input().split())) for x in r…… 题解列表 2020年05月25日 0 点赞 2 评论 462 浏览 评分:2.0