📄 ex-03-10
字号:
//Example 03-10: Using goto
using System;
public class Tester
{
public static int Main()
{
int i = 0;
repeat: // the label
Console.WriteLine("i: {0}",i);
i++;
if (i < 10)
goto repeat; // the dasterdly deed
return 0;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -