weijun_zhang 发表于 2021-3-28 21:56:38

直接printf与先定义赋值后printf区别

代码1:计算正确
#include <stdio.h>
#include <math.h>

int result;
result=pow(1,2)+pow(2,3)+pow(3,4)+pow(4,5)+pow(5,6);
int main()
{

   printf("结果=%d\n",result);
   return 0;
}


代码2:将上述代码简化,计算错误。请问为何不能简化?问题or区别是啥?
#include <stdio.h>
#include <math.h>
int main()
{
   printf("结果=%lld\n",pow(1,2)+pow(2,3)+pow(3,4)+pow(4,5)+pow(5,6))        ;
   return 0;
}

李京 发表于 2021-3-28 23:00:38

pow 函数返回类型是 double 类型的
你用 %lld 输出会出问题
加上强制转换就行了

建议看一下 pow 函数解析
pow -- 求幂
https://fishc.com.cn/thread-67234-1-1.html
(出处: 鱼C论坛)

weijun_zhang 发表于 2021-3-29 21:38:15

李京 发表于 2021-3-28 23:00
pow 函数返回类型是 double 类型的
你用 %lld 输出会出问题
加上强制转换就行了


printf("结果=%d\n",(int)(pow(1,2)+pow(2,3)+pow(3,4)+pow(4,5)+pow(5,6)))        ;
强制转换为int后输出就对了,多谢
页: [1]
查看完整版本: 直接printf与先定义赋值后printf区别