gpt4 book ai didi

java - 为什么我的输出在java中的指数是错误的

转载 作者:行者123 更新时间:2023-12-01 18:09:31 26 4
gpt4 key购买 nike

为什么这是错误的?我输入 heightL 为 2,输出必须为 4,但有问题

class He{
public static void main(String[] args)
{
int heightL=2;
int a = 9;
System.out.println(Math.abs(a));
System.out.println(2^(heightL));
}
}

为什么第二部分的输出是0?

最佳答案

^ 不是指数运算符,它是按位异或(2 XOR 2 为 0)。

对于指数,请使用 Math.pow(2,heightL)

关于java - 为什么我的输出在java中的指数是错误的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33993134/

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