让学习使我快乐 发表于 2020-9-25 11:29:39

第六节pow运算

#include <stdio.h>
int main()
{
        int a;
        int b;
        int c;
        int d;
        int g;
        int f;
       
        a = pow(1,2);
        b = pow(2,3);
        c = pow(3,4);
        d = pow(4,5);
        f = pow(5,6);
        g = a+b+c+d+f;
        printf("结果是%d\n",g);
        return 0;
}
我没有加 #include<math.h>也可以运行结果也没错 请问#include<math.h>不是必要的吗?

baige 发表于 2020-9-25 11:58:50

可能是编译器帮你添了吧。

巴巴鲁 发表于 2020-9-25 12:18:13

也没有警告吗?

wsq999 发表于 2020-9-25 16:37:42

C:\Users\Administrator\Desktop\C\0925.c        In function 'main':
12        9        C:\Users\Administrator\Desktop\C\0925.c        implicit declaration of function 'pow' [-Wimplicit-function-declaration]
12        13        C:\Users\Administrator\Desktop\C\0925.c        incompatible implicit declaration of built-in function 'pow'
确实可以运行,不过会提示警告,所以最好还是加上#include<math.h>吧

风过无痕1989 发表于 2020-9-25 20:11:22

本帖最后由 风过无痕1989 于 2020-9-25 20:14 编辑

test.c(12) : warning C4013: 'pow' undefined; assuming extern returning int

12行,也就是第1个 pow() 就出现告警了:'pow' 没有定义; 假设extern返回int

我在本板块发了一个《C语言常见错误英中对照及分析》:https://fishc.com.cn/thread-180650-1-1.html
页: [1]
查看完整版本: 第六节pow运算