我创建了一个简单的游戏,要求您在一定的回合数内猜测一个数字(例如 10)。然而,这使得很容易被击败。我需要帮助的是如何跟踪游戏进行了多长时间。
这是我到目前为止所想到的(减去游戏逻辑),但它似乎不起作用
Random ranNum = new Random();
double input; // The input
long startTime; // The time the game started
long curTime; // The time the game ended
double randNum = ranNum.nextInt(100);
while (curTime > 1000){
curTime = System.currentTimeMillis();
input = TextIO.getlnDouble();
if (input = Math.abs(randNum)){
System.out.println("You got the correct answer");
} // End if statement
else {
System.out.println("You did not have the correct answer");
System.out.println("The number was" + randNum + ".");
} // End else statement
} // End while statement