[Java/Python]输出两数中的最小数 one-liner
Posted profesor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Java/Python]输出两数中的最小数 one-liner相关的知识,希望对你有一定的参考价值。
Java
import java.util.Scanner; public class compare { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("input your first number: "); int a = scan.nextInt(); System.out.println("input your second number: "); int b = scan.nextInt(); System.out.printf("the smaller number is %d.%n", a < b ? a : b); } }
输出的结果可以是:
input your first number: 56 input your second number: -9 the smaller number is -9.
Python:
a = int(input("input your first number: ")) b = int(input("input your second number: ")) print(f"the smaller number is {a if a < b else b}") #或者: # print(f"the smaller number is {min(a, b)}")
以上是关于[Java/Python]输出两数中的最小数 one-liner的主要内容,如果未能解决你的问题,请参考以下文章