设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1375|回复: 3
打印 上一主题 下一主题

基础问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:14:55 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
using std::ios;
using std::fixed;
#include <iomanip>
using std::setw;
using std::setprecision;
#include <cmath>// using pow in maths
int main()
{
double amount;//amount on deposit
double princible = 1000.0;//starting princible
double rate = 0.1;//record rate
//out put table column heads
cout << " YEAR " << setw(21) << " Amount on deposit " << endl;
cout << fixed << setprecision(2);//这句话到底起到什么作用,它又是怎么起作用的呢~?
//calculate
for( int year = 1; year <= 10; year++ ){
amount = princible*pow(1.0 + rate,year);

//output table row
cout << setw(4) << year
<< setw(21) << amount << endl;
}//end for
return 0;//indicate successful termination
}//end function main
2#
发表于 2009-11-4 00:14:57 | 只看该作者
确定浮点数精度.
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-4 00:14:58 | 只看该作者
程序结果是每个数都保留小数后面两位,setprecision英文就是设置精度的意思.
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-4 00:14:59 | 只看该作者
setprecision(2)就是要设置小数点后两位
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 00:46 , Processed in 0.096994 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表