using System; class Test1 { public static void Main() { int x = 5; // int y = x++; // Console.WriteLine(y); // y=++x; // Console.WriteLine(y); //该函数的结果是 } }