为什么显示出输出错误

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

慕侠4478544

2019-05-16 14:38

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


写回答 关注

4回答

  • 守护小豆丁
    2019-06-12 19:50:27
    已采纳

    不换行


  • weixin_慕莱坞6457734
    2019-07-03 15:40:10

    倒数第二行的代码 要求的是不换行

    所以console.writeline要改成console.write

  • 萌新小白求带
    2019-06-20 22:39:16

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


    萌新小白求带

    不应该有括号

    2019-06-20 22:40:36

    共 1 条回复 >

  • 精慕门0467803
    2019-05-16 16:30:02

    你试着把课程关一下再打开  我上次也是这个问题  我关了再打开把之前的粘上去就好了

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题