⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 invest.cpp

📁 C++ primer plus第五章编程练习的代码
💻 CPP
字号:

#include <iostream>
 
int main()
{
	using namespace std;

	double Daphne=100;
	double Cloe=100;
	int year=1;
	do
	{
		Daphne=Daphne+100*0.1;
		Cloe=Cloe+Cloe*0.05;
		year++;
	}while(Cloe<Daphne);
	cout<<year<<" year later Cloe have more money than Daphne!"<<endl;
	cout<<"Cloe have money:"<<Cloe<<endl;
	cout<<"Daphne have money:"<<Daphne<<endl;

	system("pause");
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -