中秋佳节,献上笔试题一道,祝各位事业蒸蒸日上!
请详细解释下面的代码
(如果能编译通过,请描述输出结果;
如果无法编译通过,请解释原因)
using System;
namespace param
{
class Class1
{
static int k;
[STAThread]
static void Main(string[] args)
{
int i;
int j = 1;
Console.WriteLine(j);
Console.WriteLine(k);
Console.WriteLine(i);
}
}
}
更多笔试题