标题:pow函数
取消只看楼主
yijing21
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2007-11-7
 问题点数:0 回复次数:1 
pow函数
int Rev(int n)
{
int temp=0;
temp=n%pow(10,1);
原意是想想提取n数里的个位;如123  提出3(方法并不是最简单 只是想知道这样为什么会错)   但是编译提示
error C2297: '%' : illegal, right operand has type 'double'
pow函数模板不是可以用int型嘛   哪里错啊呢?
搜索更多相关主题的帖子: pow 函数 
2008-04-12 15:26
yijing21
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2007-11-7
得分:0 
C语言里面定义是double  我以为C++里面不一样呢  在MSDN上
template<class T>
    complex<T> pow(const complex<T>& x, int y);
template<class T>
    complex<T> pow(const complex<T>& x, const T& y);
template<class T>
    complex<T> pow(const complex<T>& x, const complex<T>& y);
template<class T>
    complex<T> pow(const T& x, const complex<T>& y);
是这样描述。。。难道只能返回double?-。-
2008-04-12 15:50



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




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

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