问答详情
源自:2-13 C#的算术运算符(一)

Double不是用于小数点,其他的?


double salary = 6000.00;//基本工资


double prize = 3200.00;//奖金


double tax = 4500.00;//交税


提问者:慕容9382720 2021-10-15 12:49

个回答

  • qq_精慕门9436011
    2021-10-16 21:06:52

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double salary = 6000.00;//基本工资

                double prize = 3200.00;//奖金

                double tax = 4500.00;//交税

                Console.Write("我的工资奖金总额是{0}元",salary +prize);

                Console.WriteLine("我的税后收入是{0}元",salary+ prize -tax);

            }

        }

    }