完成以下要求:

Double rs = 80000;
int i=0;
while (rs < 200000)
{
rs += (rs * 0.25);
i++;
}
Console.WriteLine("{0}年之后学员将达到20万", i+2006);
Console.ReadKey();