求多个数中最大值
Posted shlo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求多个数中最大值相关的知识,希望对你有一定的参考价值。
public class demo08 {
public static void main(String[] args) {
int a = 20, b = 30, c = 40;
int d = (a>b) ? 20 : 30;
int max = (d>c) ? 30 : 40;
System.out.println(max+"是最大值");
}
}
以上是关于求多个数中最大值的主要内容,如果未能解决你的问题,请参考以下文章