#include
using
namespace std;
intmain()
//在螢幕中列印0-9十個數字
int num =0;
while
(num<10)
//注意事項:寫迴圈要避免死迴圈(比如while(1))
system
("pause");
return0;
}
#include
#include
//隨機函式的標頭檔案
#include
using
namespace std;
intmain()
else
if(val < num)
else
}system
("pause");
return0;
}
#include
using
namespace std;
intmain()
while
(num<10)
;//do while 和while的區別:do while先執行一遍裡面的迴圈,再判斷條件
system
("pause");
return0;
}
#include
using
namespace std;
intmain()
num++;}
while
(num<
1000);
system
("pause");
return0;
}
#include
using
namespace std;
intmain()
//列印數字0-9
for(
int i =
0;i <
10;i++
)system
("pause");
return0;
}
#include
using
namespace std;
intmain()
else
}system
("pause");
return0;
}
#include
using
namespace std;
intmain()
cout/換行
}system
("pause");
return0;
}
#include
using
namespace std;
intmain()
cout<}system
("pause");
return0;
}
C 迴圈結構
while迴圈 迴圈一次都不執行 先判斷在執行 例項一 while迴圈 2006年 80000人,按照25 增長,哪年增長到200000人。double student 80000 int year 2006 while student 200000 console.writeline 年是人 ye...
c 迴圈結構
1for迴圈語句 for 表示式1 表示式2 表示式3 先計算表示式1,一般是個初始值 然後執行表示式2的判斷 如果成立,執行語句,然後執行表示式3,再執行第二步 如果第二步不成立,退出迴圈 include using namespace std int main return 0 2while語句...
C 迴圈結構
一 背景 有的時候,可能需要多次執行同一塊 一般情況下,語句是順序執行的 函式中的第乙個語句先執行,接著是第二個語句,依此類推。程式語言提供了允許更為複雜的執行路徑的多種控制結構。迴圈語句允許我們多次執行乙個語句或語句組,下面是大多數程式語言中迴圈語句的一般形式 三 迴圈型別 c 提供的迴圈型別大致...