我有一小段代码应该编译并允许用户在终端窗口中输入一个数字(我使用的是 Blue J)。
但是,虽然它确实“编译”,但我永远无法打开、查看终端窗口或与终端窗口交互。相反,我遇到了一个红色的“对象框”。
我已经尝试了一段时间来解决这个问题,但我似乎无法在任何地方找到答案。
这是使用的代码:
import java.util.Scanner;
public class PartA
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.println("Input your message: "); //this is the user promot
String message = input.nextLine();
System.out.println(message);
}
}