请详细解释下面的代码
(如果能编译通过,请描述输出结果;
如果无法编译通过,请解释原因)
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);
  }
 }
}



更多笔试题

相关文章:

  • 2021-11-10
  • 2021-07-31
  • 2022-02-24
  • 2021-05-09
  • 2021-07-26
  • 2022-12-23
  • 2021-08-01
  • 2021-08-01
猜你喜欢
  • 2022-12-23
  • 2021-06-22
  • 2021-09-04
  • 2021-10-26
  • 2022-12-23
  • 2021-09-02
  • 2021-12-28
相关资源
相似解决方案