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

📄 20.cpp

📁 经典C语言程序设计100例1-10 如【程序1】 题目:有1、2、3、4个数字
💻 CPP
字号:
/*---------------------------------------例题20-------------------------------------------------------------------*/


#include <iostream>

using namespace std;

int main()
{
	float hight = 100;
	float total_hight = hight;

	for(int i = 2; i<=10; i ++)
	{
		hight /= 2.0;
		total_hight += 2 * hight;
	}
	
	cout<<"The total distances is:"<<total_hight<<endl;
	cout<<"The hight is the tenth round is :"<<hight / 2<<endl;

	return 0;
}

⌨️ 快捷键说明

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