pow()函数在CLion上不起作用

问题描述 投票:-4回答:1

因此,我对这件事并不陌生,但是正在使用YouTube教程,但是由于某些原因,我的pow函数无法正常工作。例如:

printf ("%d", pow(4, 3));

应该是%d,因为我有双重权利?我尝试了%d,但这没用。

这是我得到的错误:

error: use of undeclared identifier 'pow'

[帮助新手,加油。

c clion
1个回答
0
投票

您需要包括数学库。为此,不仅要在标准输入/输出库中添加数学库,而且还要在数学库中添加。

#include <stdio.h>
#include <math.h>
© www.soinside.com 2019 - 2024. All rights reserved.