gpt4 book ai didi

c - C中数学计算的库是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 00:15:13 25 4
gpt4 key购买 nike

我如何使用正方形?例如下面的计算:

2^4=16

但是当我这样做时,结果是:6有没有不使用乘法的计算库?

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) {
int c,a=2,b=4;
c=a^b;
printf("%d",c);
return 0;
}

以及如何在 C 中使用根号?

最佳答案

在 C 中,^ 是 XOR 运算符。 2 XOR 4 确实等于 6

您应该包含 math.h 头文件:

#include <math.h>

double pow( double base, double exp );

...
x = pow(2, 4);

关于c - C中数学计算的库是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20814439/

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