python 判断三个数字中的最大值实例代码

yipeiwu_com6年前Python基础

python 判断三个数字中的最大值,具体代码如下所示:

#判断三个数中最大值
n1= int(input('please enter the firest number:'))
n2 = int(input('please enter the second number:'))
n3 = int(input('please enter the third number:'))
max_num = 0
if n1 > n2:
 max_num = n1
 if n1 > n3:
  max_num = n1
 else:
  max_num = n3
else:
 max_num = n2
 if n2 > n3:
  max_num = n2
 else:
  max_num = n3
print('the max_num is:%d'%max_num)
'''
if n1>n2:
 max_num = n1
 if max_num > n3:
  print('the max_num is n1')
 else:
  print('the max_num is n3')
else:
 max_num = n2
 if max_num > n3:
  print('the max_num is n2')
 else:
  print('the max_num is n3')
'''

PS:python之三目运算符找出三个数的最大值

Python

先写比较两个数大小的

a = 1
b = 2
max_ = a if a > b else b
print(max_)

三个数比较

num1 = int(input("输入第一个数:"))
num2 = int(input("输入第二个数:"))
num3 = int(input("输入第三个数:"))
max_ = (num1 if num1 > num2 else num2) if(num1 if num1 > num2 else num2) > num3 else num3
print(max_)

Java帝国

package com.zzti.edu;

import java.util.Scanner;

/**
 * @Classname threeEye
 * @Description TODO
 * @Author jdq8576
 * @Date 2019/3/2 14:28
 * @Version 1.0
 **/
public class threeEye {
 public static void main(String[] args){
  int a;
  int b;
  int c;
  Scanner scanner = new Scanner(System.in);
  a = scanner.nextInt();
  b = scanner.nextInt();
  c = scanner.nextInt();
  scanner.close();
  System.out.println((a>b?a:b)>c?(a>b?a:b):c);
 }
}

C++

#include<iostream>
using namespace std;
int main(){
 int a,b,c;
 cin>>a>>b>>c;
 int max = (a>b?a:b)>c?(a>b?a:b):c;
 cout<<max<<endl;
 return 0;
}

总结

以上所述是小编给大家介绍的python 判断三个数字中的最大值,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对【听图阁-专注于Python设计】网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

相关文章

Linux下用Python脚本监控目录变化代码分享

#!/usr/bin/env python #coding=utf-8 import os from pyinotify import WatchManager, Notifier...

在dataframe两列日期相减并且得到具体的月数实例

如下所示: df = pd.DataFrame(np.random.randn(6,4), index=pd.date_range('20130101', periods=6), c...

Python读取Word(.docx)正文信息的方法

Python读取Word(.docx)正文信息的方法

本文介绍用Python简单读取*.docx文件信息,一些python-word库就是对这种方法的扩展。 介绍分两部分: Word(*.docx)文件简述 Python提取Wor...

Python zip()函数用法实例分析

本文实例讲述了Python zip()函数用法。分享给大家供大家参考,具体如下: 这里介绍python中zip()函数的使用: >>> help(zip) Help...

详解Python中的静态方法与类成员方法

前言 因为Python的水平目前一直是处于能用阶段,平时写的脚本使用的Python的写法也比较的简单,没有写过稍微大一点的项目。对Python中的类,类之间的组织关系,整个项目中类之间如...