标题:pow函数算错
取消只看楼主
eblis
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2007-8-27
 问题点数:0 回复次数:1 
pow函数算错
程序代码:
#include <stdio.h>
int main (void)
{
     int a=5,b;
     b=pow(a,2);
     printf ("%d %d\n",a,b);
     getch();
     }                  

显示出来b=24我用dev-c++ 4.9.9.2版本编译pow(5,2)输出的就是24.其它数字正确....为什么?
搜索更多相关主题的帖子: pow 函数 int 数字 void 
2007-11-22 19:55
eblis
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2007-8-27
得分:0 
程序代码:
#include <stdio.h>
#include <math.h>
int main (void)
{
     double a=5.0,b;
     b=pow(a,2);
     printf ("%f %f\n",a,b);
     scanf ("%f",&a);
     return 0;
     }    

2007-11-22 21:13



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-187816-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.129167 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved