標題:
while 迴圈
[打印本頁]
作者:
tonyh
時間:
2011-10-15 16:23
標題:
while 迴圈
本帖最後由 tonyh 於 2011-10-15 16:41 編輯
利用while迴圈, 列出100~200間所有2的倍數.
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-10-15 16:24
本帖最後由 t3742238 於 2011-10-15 16:28 編輯
#include <iostream>
using namespace std;
int main()
{
int i=100;
while(i<=200)
{
cout<<i<<endl;
i+=2;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-10-15 16:26
#include <iostream>
using namespace std;
int main()
{
int i=100;
while(i>=200)
{
cout<<i<<endl;
i++;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-10-15 16:26
#include<iostream>
using namespace std;
int main()
{
int i=100;
while(i<=200)
{
cout<<i<<endl;
i+=2;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-10-15 16:28
#include<iostream>
using namespace std;
int main()
{
int i=100;
while (i<=200)
{
cout<<i<<endl;
i+=2;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-10-15 16:34
#include <iostream>
using namespace std;
int main()
{
int i=100;
int y=200;
while(i<=200)
{
cout<<i<<endl;
i+=2 ;
}
for(int i=100; i<=200; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-10-15 16:35
本帖最後由 t2364705 於 2011-10-15 16:40 編輯
#include<iostream>
using namespace std ;
int main()
{
int i=100;
int j=200;
while (i<=200)
{
cout<<i<<endl;
i+=2;
}
for(int i=202; i<=300; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-10-15 16:40
#include <iostream>
using namespace std;
int main()
{
int i=100;
while(i<=200)
{
cout<<i<<endl;
i+=2 ;
}
for(int i=202; i<=300; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-10-15 16:41
#include<iostream>
using namespace std ;
int main()
{
int i=100;
int j=200;
while (i<=200)
{
cout<<i<<endl;
i+=2;
}
for(int i=202; i<=300; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2011-10-15 16:43
#include <iostream>
using namespace std;
int main()
{
int i=100;
while(i<=200)
{
cout<<i<<endl;
i+=2;
}
for(i=202;i<302;i+=2)
{
cout<<i<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-10-15 16:48
#include <iostream>
using namespace std;
int main()
{
int i=100;
while(i>=200)
{
cout<<i<<endl;
i++;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2