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

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

筛选

3个数找最大值

摘要:解题思路:#include<stdio.h>int main(){    int a,b,c,d;    scanf("%d%d%d",&a,&b,&c);    d=a>b?a:b;    d=d>……

max解决三个数找最大值

摘要:解题思路:先用map单行输入,再用max比大小。注意事项:参考代码:a,b,c=map(int,input().split())print(max(a,b,c))……

三个数找最大值

摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main {    public static……

三个整数中找最大数

摘要:解题思路:  新手,适合初学者。思路很简单就三个中任挑一个比其他两个大即可 认为要懂||(或) &&(都、和)  ?(非) 的知识注意事项:if语句判断时只有一条语句时可不用{ },我是为方便记忆, ……

c++解题思路

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

三个数找最大值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max; scanf("%d%d%d",&a,&b,&c); max=a; if(……

三个数的最大值

摘要:解题思路:用数组+for循环判断注意事项:strlen只能用于char型数组参考代码:#include<stdio.h>int main(){  int s[100]={&#39;\0&#39;}; ……

个人觉得还是这个最容易理解

摘要:解题思路:三目运算注意事项:记住三目运算的规则与写法——z? a:b;(z是表达式)如果表达式成立,答案是a,反之是b;参考代码:#include<stdio.h>#include<math.h>in……