为了检查用户输入的值并查看计算出的随机数,我想让这些数字投影在控制台中(eclipse)。但是什么勾画出了我的惊讶?我输入数字后,最后两个 system.out.println(位于 invoermax.close() 上方))没有出现在控制台屏幕中???就像java甚至没有读取或注意到这些代码行一样,怎么回事???
这是我的代码:
package Package1;
import java.util.Scanner;
import java.util.concurrent.ThreadLocalRandom;
public class test6KOPIE1 {
public static void main(String[] args)
{
Scanner Invoermax = new Scanner(System.in);
System.out.println("Under which number you want to guess");
int Invoer = Invoermax.nextInt();
int Hoogte = ThreadLocalRandom.current().nextInt(1,Invoermax.nextInt());
System.out.println("So a guess under max: " + Invoer);
System.out.println("The random number has become " + Hoogte);
Invoermax.close();
}
}
隔江千里
长风秋雁
慕侠2389804
相关分类