#作业要求
编写程序,估计一个职员在65岁退休之前能赚到多少钱。用年龄和起始薪水作为输入,并假设职员每年工资增长5%。
#代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入你的年龄");
string str_age = Console.ReadLine();
Console.WriteLine("请输入你现在的工资");
string str_salar = Console.ReadLine();
try
{
int age = Convert.ToInt32(str_age);
double salar = Convert.ToDouble(str_salar);
double money = salar; //工资和
while (age < 65)
{
salar *= 1.05;
money += salar;
age++;
}
Console.WriteLine("你到65岁时,可以领到{0}元",money);
}
catch
{
Console.WriteLine("格式输入错误");
}
Console.ReadKey();
}
}
}