java输入三个整数将三个数中最大的一个数输出
时间: 2024-09-06 09:08:15 浏览: 59
可以使用Java中的Scanner类来实现输入三个整数,然后使用if语句来判断三个数中的最大值,最后输出即可。具体代码如下:
```
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = scanner.nextInt();
int b = scanner.nextInt();
int c = scanner.nextInt();
int max = a;
if (b > max) {
max = b;
}
if (c > max) {
max = c;
}
System.out.println("最大值为:" + max);
}
}
```
阅读全文