2-15的任务

来源:2-15 C#的算术运算符(三)

笑笑笑0

2016-11-14 01:30

任务怎么改

写回答 关注

5回答

  • 不会趴桌子
    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);

            }

        }

    }


C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题