所以我可以出现一个框架。我有这个程序在我的Eclipse控制台上运行。我需要将这个程序从我的控制台传递到我的框架。我该怎么办?或者,如果这个解释太长,你可以指出我可以学习如何去做的地方吗?这是我的一些代码。我需要将if
语句中的内容添加到我的框架中。
JFrame frame = new JFrame("Amendments"); frame.setVisible(true);
String z = "y";
while (z.equalsIgnoreCase("y"))
{
Random x = new Random();
int y =x.nextInt(1);
Scanner in = new Scanner(System.in);
if (y == 0)
{
System.out.println("What is the First Amendment?");
String answer = in.nextLine();
System.out.println("Your answer: " + answer);
System.out.println("Right answer: Right to rapps religion is split between practice and establish");
}