如何在C#中创建嵌套的while循环?
对于嵌套的while循环,我们有两个while循环。
第一个循环检查条件,如果条件为真,则转到内部循环,即嵌套循环。
循环1
while (a<25) { }
循环2(在loop1内部)
while (b<45){ }
要创建嵌套的while循环,下面是示例代码。
示例
using System; namespace Program { class Demo { public static void Main(string[] args) { int a=20; while (a<25) { int b=40; while (b<45) { Console.Write("({0},{1}) ", a, b); b++; } a++; Console.WriteLine(); } } } }
输出结果
(20,40) (20,41) (20,42) (20,43) (20,44) (21,40) (21,41) (21,42) (21,43) (21,44) (22,40) (22,41) (22,42) (22,43) (22,44) (23,40) (23,41) (23,42) (23,43) (23,44) (24,40) (24,41) (24,42) (24,43) (24,44)