gpt4 book ai didi

java - 如何找到 "max"

转载 作者:行者123 更新时间:2023-12-02 10:13:13 26 4
gpt4 key购买 nike

import java.util.Scanner;

class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
for(int i = 0;i<=5;i++){
int N = scanner.nextInt();
int max = 0;
if(N > max) max = N;
}
System.out.println("bbb " + max);
}
}

我输入了 5 个数字,其中必须有一个最大值,但编译器说找不到“最大值”。

最佳答案

您正在循环内定义和设置 max 变量。因此,每次运行它时,它都会再次将 var max 设置为 0。您的代码需要如下所示:

class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int max = 0;
for(int i = 0;i<=5;i++){
int N = scanner.nextInt();
if(N > max) max = N;
}
System.out.println("bbb " + max);
}
}

关于java - 如何找到 "max",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54850745/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com