📜  for循环c#代码示例

📅  最后修改于: 2022-03-11 14:49:03.803000             🧑  作者: Mango

代码示例6
for (int i = 0; i < 5; i++) 
{
  Console.WriteLine(i);
}