C语言pow函数的用法是什么?

t",pow(i,3));printf("%ld\t",(long)pow((int)i,3));printf("结果是:%I64d\t",(longlongint)po... t", pow(i,3));printf("%ld\t", (long)pow((int)i,3));printf("结果是:%I64d\t",(long long int )pow(i,3));printf("%d\n", (int)pow(i,3));system("pause");f(i);system("pause");}这个程序为什么只有前一个输出答案正确,后面的都不正确呢? 展开
 我来答
韧劲9
2018-03-09 · TA获得超过9224个赞
知道小有建树答主
回答量:1638
采纳率:92%
帮助的人:349万
展开全部
1,要加入头文件 math.h
2,pow(x,y);//其作用是计算x的y次方。x、y及函数值都是double型
例:
我要计算2的5次方
源代码如下:
#include"stdio.h"
#include"math.h"
main()
{
long total;
int x = 2, y = 5;
total = pow(x,y); /*调用pow函数*/
printf("%ld",total);
getch();
}
职帅说
2018-03-09 · 专注职场问题,分享职场管理知识!
个人认证用户
职帅说
采纳数:1262 获赞数:33053

向TA提问 私信TA
展开全部
原型:extern float pow(float x, float y);

用法:#include <math.h>

功能:计算x的y次幂。

说明:x应大于零,返回幂指数的结果。

举例:

// pow.c

#include <syslib.h>

#include <math.h>

main()

{

clrscr(); // clear screen

textmode(0x00); // 6 lines per LCD screen

printf("4^5=%f",pow(4.,5.));

getchar();

return 0;

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
peachkun
2018-03-09 · TA获得超过883个赞
知道小有建树答主
回答量:246
采纳率:0%
帮助的人:207万
展开全部
原型:extern float pow(float x, float y);

用法:#include <math.h>

功能:计算x的y次幂。

说明:x应大于零,返回幂指数的结果。

举例:

// pow.c

#include <syslib.h>

#include <math.h>

main()

{

clrscr(); // clear screen

textmode(0x00); // 6 lines per LCD screen

printf("4^5=%f",pow(4.,5.));

getchar();

return 0;

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式