gpt4 book ai didi

java - 一元运算符的错误操作数类型 int '!在while语句中

转载 作者:行者123 更新时间:2023-12-03 23:16:15 24 4
gpt4 key购买 nike

import java.util.Scanner;
public class GuessingGame_v1
{
public static void main(String[] args)
{
double randNum = Math.random();

int number =(int) (randNum * 100.0);
int counter = 0;
Scanner in = new Scanner(System.in);

int guess = 0;

while (!guess = randNum)
{
System.out.println("Enter your guess: ");
int guess = in.nextInt();

if(guess > randNum)
System.out.println("Too High");
else
System.out.println("Too Low");
}
if (guess = randNum)
System.out.println("Congradulations you guessed the number!");
}
}

我是代码新手,但在这段代码中,它一直说“一元运算符的错误操作数类型 int '!'。我能做些什么来解决这个问题?

最佳答案

!是一个期望单个 boolean 的一元否定运算符操作数。因此它不能应用于 int .

你应该改变

while (!guess = randNum)


while (guess != randNum)
!=是检查两个数字是否不相等的运算符。

此外
if (guess = randNum)

应该
if (guess == randNum)

因为您想比较数字(而不是将 randNum 分配给 guess 变量)。

关于java - 一元运算符的错误操作数类型 int '!在while语句中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33486035/

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