| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1494 人关注过本帖
标题:大家再帮我改下错!!!
只看楼主 加入收藏
flysky102
Rank: 1
等 级:新手上路
帖 子:87
专家分:0
注 册:2007-12-26
收藏
 问题点数:0 回复次数:10 
大家再帮我改下错!!!
下面程序Daphne和Cleo分别是两个人,程序目的是,D是以10%的单利投资投资了100元既:利息=0.1*原始存款,C是以5%的复利投资投资了100元,也就是第一年赢利105。第2年赢利是105的5%=5.25,写的时候也感觉不对,可是也不知道错在哪了
#include <iostream>
const int Daphne=100;
const int Cleo=100;
int main()
{using namespace std;
 int daphnes;
 daphnes=Daphne*0.1;
 int cleos;
 cleos=Cleo*0.05;
 int year=1;
 for(year;cleos<=daphnes;year++)
 {cleos=(Cleo+cleos)*0.05;
  year++;
}
 cout<<year<<endl;
 system("pause");
 return 0;
}
搜索更多相关主题的帖子: Cleo int 利息 year Daphne 
2008-03-05 20:27
lonmaor
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:郑州
等 级:版主
威 望:75
帖 子:2637
专家分:6423
注 册:2007-11-27
收藏
得分:0 
Daphne第n年的总价值应该是100*10%*n+100;
Cleos第n年的总价值应该是100*(1+5%)^n;
2008-03-05 20:39
flysky102
Rank: 1
等 级:新手上路
帖 子:87
专家分:0
注 册:2007-12-26
收藏
得分:0 
懂是懂什么意思了,可是写程序时感到很茫然,刚才试写了下,结果发现程序还是不对:
# include <iostream>
const int Daphne=100;
const int Cleo=100;
int main()
{using namespace std;
 
 int year=1;
 for(year;Cleo*(1+0.05)^year=Daphne*0.1*year+100;year++)
 {cleos=(Cleo+cleos)*0.05;
  year++;
}
 cout<<year<<endl;
 system("pause");
 return 0;
}

I think I could do better.
2008-03-05 20:46
lonmaor
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:郑州
等 级:版主
威 望:75
帖 子:2637
专家分:6423
注 册:2007-11-27
收藏
得分:0 
Try this:
程序代码:
#include <iostream>
#include <cstdlib>
#include <cstring>
using namespace std;

const int Daphne=100;
const int Cleo=100;

int main()
{
    double daphnes=Daphne,cleos=Cleo;
    int year;
    for (year=1; cleos<=daphnes; ++year)
    {
        daphnes += Daphne*0.1;
        cleos *= 1.05;
        cout<<year<<" year\t"<<"Daphne:"<<daphnes<<"\tCleo:"<<cleos<<endl;
    }
    system("pause");
    return 0;
}


[[it] 本帖最后由 lonmaor 于 2008-3-5 20:52 编辑 [/it]]
2008-03-05 20:51
flysky102
Rank: 1
等 级:新手上路
帖 子:87
专家分:0
注 册:2007-12-26
收藏
得分:0 
#include <iostream>
#include <cstdlib>   //这个是什么头文件?我是初学,不要见笑
#include <cstring>
using namespace std;

const int Daphne=100;
const int Cleo=100;

int main()
{
    double daphnes=Daphne,cleos=Cleo;
    int year;
    for (year=1; cleos<=daphnes; ++year)
    {
        daphnes += Daphne*0.1;
        cleos *= 1.05;
        cout<<year<<" year\t"<<"Daphne:"<<daphnes<<"\tCleo:"<<cleos<<endl;
    }
    system("pause");
    return 0;
}

I think I could do better.
2008-03-05 21:25
tszhao
Rank: 1
等 级:新手上路
帖 子:31
专家分:0
注 册:2008-3-4
收藏
得分:0 
楼主的代码看起来没有语法上的错误,但是,一个很低级的错误就是出现在for循环里,循环没有办法结束,你的代码是  cleos=(Cleo+cleos)*0.05;
而应该改成cleos=(Cleo+cleos)*(1+0.05);
2008-03-05 21:33
emmc
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-3-5
收藏
得分:0 
看看
#include <iostream>
using namespace std;
const int Daphne=100;
const int Cleo=100;
int main()
{
   
   double daphnes=Daphne*0.1;
   int cleos;
       cleos=Cleo*0.05;
   int year=1;
  for(year;cleos<=daphnes;year++)
  {   
      daphnes = daphnes*.1 + 100;
      cleos = (Cleo+cleos)*(0.05+1);
      year++;
  }
  cout<<"year = "<<year<<endl;
  cout<<"daphnes = "<<daphnes<<endl<<"cleos = "<<cleos<<endl;
  system("pause");//这一个我没有学过呢?是什么呀?我也中刚学VC++的一个新手吧
  return 0;
}
2008-03-06 13:46
flysky102
Rank: 1
等 级:新手上路
帖 子:87
专家分:0
注 册:2007-12-26
收藏
得分:0 
system("pause");//这个是让系统等一等的,叫什么名字我也不知道,我也是从别人那学的我的编程是自学的,如果没这个你会看不到结果的

I think I could do better.
2008-03-07 13:17
lonmaor
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:郑州
等 级:版主
威 望:75
帖 子:2637
专家分:6423
注 册:2007-11-27
收藏
得分:0 
cstdlib对应于C中的<stdlib.h>
顾名思义,包含了大量的标准库函数.
因为使用了system(),故需要包含之。
pause是一条dos命令。这里通过system()调用它使程序暂停一下。
2008-03-07 14:04
zhangdezhao
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-3-6
收藏
得分:0 
帮你改
你那个很明显啊  多了个year++啊  for(year;cleos<=daphnes;year++——————————这儿有一个了,下边就不用了啊)
  {   
      daphnes = daphnes*.1 + 100;
      cleos = (Cleo+cleos)*(0.05+1);
      year++;
2008-03-07 16:57
快速回复:大家再帮我改下错!!!
数据加载中...
 
   



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

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