博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数值的整数次方
阅读量:5319 次
发布时间:2019-06-14

本文共 1266 字,大约阅读时间需要 4 分钟。

1 #include "stdafx.h" 2 #include 
3 #include
4 #include
5 /* 6 题目:实现函数 doublePower(double base,int exponenet), 7 求base的exponenet次方,不得使用库函数,同时不需要考虑大数问题 8 */ 9 using namespace std;10 bool g_InvalidInput = false;11 bool equal(double num1,double num2)12 {13 if((num1 - num2 >-0.0000001)&&(num1-num2<0.0000001))14 {15 return true;16 }17 else return false;18 }19 double PowerWithUnsignedExponenet(double base,unsigned int exponent)20 {21 double result = 1.0;22 for(unsigned int i = 1;i<=exponent;++i)23 {24 result*= base;25 }26 return result;27 }28 double Power(double base,int exponent)29 {30 g_InvalidInput = false;31 if(equal(base,0.0)&&exponent<0)32 {33 g_InvalidInput = true;34 return 0.0;35 }36 37 unsigned int absExponent = (unsigned int) (exponent);38 if(exponent<0)39 absExponent = (unsigned int)(-exponent);40 double result = PowerWithUnsignedExponenet(base,absExponent);41 if(exponent <0)42 result = 1.0/result;43 return result;44 }45 46 int _tmain(int argc, _TCHAR* argv[])47 { 48 cout<
<

 

转载于:https://www.cnblogs.com/crazycodehzp/p/3561275.html

你可能感兴趣的文章
移动设备和SharePoint 2013 - 第3部分:推送通知
查看>>
SOPC Builder中SystemID
查看>>
MySQL数据库备份工具mysqldump的使用(转)
查看>>
NTP服务器配置
查看>>
【转】OO无双的blocking/non-blocking执行时刻
查看>>
关于 linux 的 limit 的设置
查看>>
HDU(4528),BFS,2013腾讯编程马拉松初赛第五场(3月25日)
查看>>
vim中文帮助教程
查看>>
MySQL基础3
查看>>
RxJS & Angular
查看>>
面向对象(多异常的声明与处理)
查看>>
MTK笔记
查看>>
ERROR: duplicate key value violates unique constraint "xxx"
查看>>
激活office 365 的启动文件
查看>>
无法根据中文查找
查看>>
[简讯]phpMyAdmin项目已迁移至GitHub
查看>>
转载 python多重继承C3算法
查看>>
【题解】 bzoj1597: [Usaco2008 Mar]土地购买 (动态规划+斜率优化)
查看>>
css文本溢出显示省略号
查看>>
git安装和简单配置
查看>>