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

2-15的任务

任务怎么改

提问者:笑笑笑0 2016-11-14 01:30

个回答

  • 不会趴桌子
    2019-06-02 20:41:49

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Test
    {
        class Program
        {
             static void Main(string[] args)
            {
                int x = 5;
                int y = 5;
                int z = 5;
                x++;
                Console.Write(x);

                ++y;

                Console.Write(y);

                Console.Write(++z);
            }
        }
    你可以试试这一串代码,我这串代码有彩蛋哦!!

    等你找出来了,然后不懂在来问我


  • qq_高仔_mrzIQ5
    2018-10-30 10:35:27

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Test
    {
        class Program
        {
            static void Main(string[] args)
            {
                int x = 5;
                int y = 5;
                int z = 5;
                x++;
                Console.Write(x);
                Console.Write(++y);
                Console.Write(++z);
            }
        }
    }

    不谢

  • 边防连
    2017-09-11 19:15:09

    天真的你已经改好了,题目是需要将y++改为++y

  • 小学弟啦啦啦
    2016-11-16 13:33:53

    这个实现不了嘛?


  • Joecy20
    2016-11-14 10:40:09

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 5;

                int y = 5;

                int z = 5;

                x++;

                Console.Write(x);

                Console.Write(++y);

                Console.Write(++z);

            }

        }

    }