1006题: 三个数找最大值(数组的思路) 摘要:# 自己写的代码 ```c #include int main() { int a[3]; int temp; gets(a); for(int i=0;ia[i+1]){…… 题解列表 2023年04月25日 0 点赞 0 评论 86 浏览 评分:0.0
1006: [编程入门]三个数找最大值 摘要:解题思路:这道题更简单,只是单纯的找最大值;注意事项:是最大值,不是最小值参考代码:#include<bits/stdc++.h> using namespace std; int a[100],…… 题解列表 2023年04月27日 0 点赞 0 评论 126 浏览 评分:9.9
三个数找最大值 摘要:解题思路:注意事项:求大佬解惑就是后面的那个for循环的i的范围为什么从0if语句中(a[i]>a[i+1]){max =a[i+1];}这么写为什么不全对参考代码:// 一行数组,分别为a b c#…… 题解列表 2023年05月27日 0 点赞 0 评论 54 浏览 评分:0.0
三个数找最大值代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b&&…… 题解列表 2023年07月05日 0 点赞 0 评论 82 浏览 评分:9.9
双目运算符使用 摘要:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int max; max = a>b?a:b…… 题解列表 2023年08月09日 0 点赞 0 评论 92 浏览 评分:0.0
1006c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); if(a>=b&&a>=…… 题解列表 2023年11月05日 0 点赞 0 评论 42 浏览 评分:0.0
[编程入门]三个数找最大值 摘要:解题思路:if-else注意事项:参考代码:a,b,c = map(int,input().split())if a>b: if a>c: print(a) else: …… 题解列表 2023年11月07日 0 点赞 0 评论 197 浏览 评分:9.9
题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long a,b,c; cin>>a>>b…… 题解列表 2023年11月15日 0 点赞 0 评论 93 浏览 评分:0.0
利用三目运算符解决三个数找最大值问题 摘要:这道题只能说典中典。直接说方法吧。解题思路:一开始看到就想一一比较,但个人觉得这样太复杂、麻烦。有没有一种几行就能写完的代码?有!这里就运用到了三目运算符!首先在a与b中找最大的数值,接下来最大的数值…… 题解列表 2023年11月27日 0 点赞 0 评论 65 浏览 评分:9.9
答案之中的答案 摘要:解题思路:wu注意事项:wu参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; …… 题解列表 2023年12月02日 0 点赞 0 评论 122 浏览 评分:6.0