gpt4 book ai didi

java - System.out.println 错误 新程序员

转载 作者:行者123 更新时间:2023-12-01 18:23:35 25 4
gpt4 key购买 nike

我正在尝试执行一个简单的输入程序,但在 System.out.println 命令上出现错误,我不知道为什么它不接受该命令并且可以'在我修复它之前不要继续工作。

错误提示:

Multiple markers at this line
- Syntax error, insert ")" to complete MethodDeclaration
- Syntax error, insert "Identifier (" to complete
MethodHeaderName
- Syntax error on token ".", @ expected after this token
- Syntax error, insert "SimpleName" to complete QualifiedName

我的代码如下。

package classPack;

import java.util.Scanner;

public class Main {
Scanner s = new Scanner(System.in);
int numone = s.nextInt();
System.out.println("please input the number of numbers you want to analyze");
Scanner r = new Scanner(System.in);
int numtwo = s.nextInt();
}

最佳答案

试试这个:

public class Main {  
public static void main(String[] args) {
// you only need one instance of scanner
Scanner s = new Scanner(System.in);
int numone = s.nextInt();
System.out.println("please input the number of numbers you want to analyze");
int numtwo = s.nextInt();
// don't forget to close the scanner
s.close();
}
}

在 Java 中,您必须将代码放在方法中,而不是在类级别。特别是,您可以将其放在 main() 方法中,该方法是所有程序执行的入口点。

关于java - System.out.println 错误 新程序员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26941651/

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