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);
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); ??????? } ??? } }
2019-06-02
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);
??????? }
??? }
你可以試試這一串代碼,我這串代碼有彩蛋哦!!
等你找出來了,然后不懂在來問我
2018-10-30
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
天真的你已經改好了,題目是需要將y++改為++y
2016-11-16
這個實現不了嘛?
2016-11-14
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);
? ? ? ? }
? ? }
}