求c++大神帮我看看编的程序哪错了....

#include<iostream>usingnamespacestd;intmain(){intannualInterestRate;cout<<"Enteraannu... #include <iostream>
using namespace std;

int main()
{
int annualInterestRate;
cout<<"Enter a annualInterestRate :" ;
cin>>annualInterestRate;
const int deposit = 100;

double monthlyInterestRate = annualInterestRate / 1200;
double FirstMonth = deposit * (1 + monthlyInterestRate );
double SecondMonth = (deposit + FirstMonth) * (1 + monthlyInterestRate);
double ThirdMonth = (deposit + SecondMonth) * (1 + monthlyInterestRate);
double FourMonth = (deposit + ThirdMonth) * (1 + monthlyInterestRate);
double FifthMonth = (deposit + FourMonth) * (1 + monthlyInterestRate);
double SixthMonth = (deposit + FifthMonth) * (1 + monthlyInterestRate);

cout <<"The FirstMonth is : "<<FirstMonth
<<"\n The SecondMonth is : "<<SecondMonth
<<"\n The ThirdMonth is : "<<ThirdMonth
<<"\n The FourthMonth is : "<<FourMonth
<<"\n The FifthMonth is : "<<FifthMonth
<<"\n The SixMonth is : "<<SixthMonth<<endl;

return 0 ;
}

程序中想表达的意思,是下一个月和上个月累加,可是输出结果却是
100

200
300
400
500
600.。。

求大神给我,书上没写的特别清楚,自学的孩子,求照顾哦(*^__^*)
展开
 我来答
suiyue_2009
2013-06-16 · TA获得超过846个赞
知道小有建树答主
回答量:1248
采纳率:0%
帮助的人:870万
展开全部
你在程序中加上上个月的就可以了啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
veket的小号
2013-06-16 · TA获得超过3371个赞
知道大有可为答主
回答量:3762
采纳率:0%
帮助的人:3936万
展开全部
double monthlyInterestRate = annualInterestRate / 1200; 问题在这行

/1200.0
追问
谢谢哈~真的可以了,我想问问为什么呢?~
追答
整形 / 整形 得整形
3 / 5 得 0 而不是0.6
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式