console的输出int i = 1;Console.WriteLine(i);Console.WriteLine("i=", i);为什么第二种输出方法只能输出 i= [解决办法]Console.WriteLine("i={0}", i);