题解 1006: [编程入门]三个数找最大值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1006: [编程入门]三个数找最大值

摘要:[题目传送门(一上来都是这个)](https://www.dotcpp.com/oj/problem1006.html) ###**思路** 定义一个数组,遍历求最大值即可。 ###**代码**……

[编程入门]三个数找最大值

摘要:解题思路:if-else注意事项:参考代码:a,b,c = map(int,input().split())if a>b:    if a>c:        print(a)    else:   ……

c++解题思路

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b,c;    cin >> a;    cin >……

1006: [编程入门]三个数找最大值

摘要:解题思路:这道题更简单,只是单纯的找最大值;注意事项:是最大值,不是最小值参考代码:#include<bits/stdc++.h> using namespace std; int a[100],……