这个题哪儿错了?

来源:2-13 C#的算术运算符(一)

慕无忌1316925

2016-09-26 23:26

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

        }

    }

}


写回答 关注

3回答

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

    这个题没有错误呀!

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

    把WriteLine改为Write马上成功

    慕雪5382...

    为什么啊? 我知道这样就过了,但是不懂啊

    2017-11-01 19:51:20

    共 1 条回复 >

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

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

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题