打造技术团队,愿与您共同开创事业!
int a1 = 1; int a2 = 2; string resStr="Init"; if (a1 < a2) { goto bb; resStr="aa"; } resStr = "kk"; bb:; Response.Write(resStr);
输出结果:Init