1、了解while 和do...while的区别
2、2011年学员不一定为整数,25%只是大概增长幅度,所以不能直接打出来,说明突破20w即可
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
//2006年培养学员8w人,每年增长25%
//请问按此增长速度,到哪一年培训人数将达到20w??
int year = 2006;//声明变量i 来增加年份
double students = 80000;//初始人数
do
{
//aftStudents = befStudents * (5 / 4) * i++;//students*=1.25
students=1.25*students;
// Console.WriteLine(afStudents);
year++;
}
while (students < 200000);
Console.WriteLine("第{0}年接收学员突破20W!", year);
Console.ReadLine();
}
}
}