C語(yǔ)言 循環(huán)的嵌套
嵌套可以是兩層或多層。while、do-while, for三種循環(huán)都可以互相嵌套。
for語(yǔ)句也可與while、do-while語(yǔ)句相互嵌套,構(gòu)成多重循環(huán)。以下形式都是合法的嵌套。
(1 ) for語(yǔ)句中嵌入for語(yǔ)句
for ()
{
for ()
{…}
}
(2)for語(yǔ)句中嵌入while語(yǔ)句
for ()
{
while()
{…}
}
(3) for語(yǔ)句中嵌入do-while語(yǔ)句
for()
{
do
{…
} while():
}
(4)while語(yǔ)句中嵌入for語(yǔ)句
while
{ …
for()
{…}
}
( 5) while語(yǔ)句中嵌入while語(yǔ)句
while
{ …
while()
{…}
}
( 6) while語(yǔ)句中嵌入do-while語(yǔ)句
while
{ …
do{
…
}while();
…
}
(7) do-while語(yǔ)句中嵌入for語(yǔ)句
do{
…
for()
{…}
…
}while();
(8) do-while語(yǔ)句中嵌入while語(yǔ)句
do {
…
while()
{…}
…
}while();
(9) do-while語(yǔ)句中嵌入do…while語(yǔ)句
do {
…
do
{…} while();
}while():
點(diǎn)擊加載更多評(píng)論>>