返回列表 發帖

for 迴圈 (三)

利用for迴圈, 在畫面上直列顯示100以內所有2的倍數(需為正整數).
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=2; i<=100; i+=2)   //i=i+2
  7.         cout<<i<<endl;
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表