美文网首页
C#7-2次作业

C#7-2次作业

作者: 八度_八度 | 来源:发表于2019-01-03 09:19 被阅读0次

    #作业要求:

    编写程序,估计一个职员在65岁退休之前能赚到多少钱。用年龄和超始薪水作为输入,并假设职员每年工资增长5%。

    #代码:

    namespace 作业2

    {

        class Program

        {

            static void Main(string[] args)

            {

                /**

                * 作业2:编写程序,估计一个职员在65岁退休之前能赚到多少钱。

                * 用年龄和超始薪水作为输入,并假设职员每年工资增长5%。

                * */

                Console.WriteLine("请输入年龄");

                int age = Convert.ToInt32(Console.ReadLine());

                Console.WriteLine("请输入你现在的工资");

                string str_salar = Console.ReadLine();

                try

                {

                    int str_age = Convert.ToInt32(str_salar);

                    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();

            }

        }

    }

    #效果:

    相关文章

      网友评论

          本文标题:C#7-2次作业

          本文链接:https://www.haomeiwen.com/subject/yuwgxqtx.html