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

这个题哪儿错了?

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.WriteLine("我的工资奖金总额是{0}元",salary+ prize);

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

        }

    }

}


提问者:慕无忌1316925 2016-09-26 23:26

个回答

  • wwj12345ss
    2017-01-13 13:57:27

    这个题没有错误呀!

  • qq_宋_9
    2016-11-29 09:30:11

    把WriteLine改为Write马上成功

  • 哦是瘦身小麦兜
    2016-09-27 00:11:10

    答案有错,你放在vs中运行是对的