为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

5 回答

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);
        }
    }
你可以试试这一串代码,我这串代码有彩蛋哦!!

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


0 回复 有任何疑惑可以回复我~

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

不谢

0 回复 有任何疑惑可以回复我~

这个实现不了嘛?


0 回复 有任何疑惑可以回复我~

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

        }

    }

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C#开发轻松入门
  • 参与学习       252039    人
  • 解答问题       1448    个

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

进入课程

2-15的任务

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信