gpt4 book ai didi

java - 为什么我找不到符号 : in. nextInt 错误?

转载 作者:行者123 更新时间:2023-12-02 11:09:19 28 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

7年前关闭。




Improve this question




我正在尝试用 Java 编写一个小游戏,但它不断弹出错误:

cannot find symbol



in.nextInt .我还有其他 in.nextInt s 在我的代码中运行良好,所以我有点难过。
import java.util.Scanner;

public class Player
{
int difficult = 3;

public Player()
{
}
public void SetDifficult()
{
Scanner in = new Scanner(System.in);
System.out.println("choose your difficulty:\n1. simple\n2. easy\n3. normal\n4. hard\n5. impossible");
difficult = in.nextint();
...
}

出现此错误的原因是什么?

最佳答案

你有:

in.nextint()

你要:
in.nextInt()

用大写字母 I

关于java - 为什么我找不到符号 : in. nextInt 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27306971/

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