如何在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)
热门推荐
10 潮汕生日谚语祝福语简短
11 学生祝福语简短古诗大全
12 生日涂鸦祝福语简短英文
13 爸爸爱你祝福语大全简短
14 员工离职祝福语简短高级
15 祝愿新生宝宝祝福语简短
16 远方同事回家祝福语简短
17 新年过后奋斗祝福语简短
18 同事辞职正常祝福语简短