標題:
[作業] for 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2016-4-16 11:41
標題:
[作業] for 迴圈 (一)
本帖最後由 tonyh 於 2016-4-16 11:51 編輯
利用for迴圈, 在畫面上直列顯示1~10.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//起始值 終止值 遞增或遞減的條件
for(int i=1; i<=10; i++) //i=i+1 i+=1
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-4-17 17:14
本帖最後由 陳泓瑜 於 2016-4-23 10:23 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int f;
for(f=1;f<=10;f++)
cout<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-4-22 23:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-4-23 09:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
複製代碼
作者:
張孟軒
時間:
2016-4-23 10:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int f;
for(f=1;f<=10;f++)
cout<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高允懋
時間:
2016-4-23 10:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-4-23 10:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-4-23 10:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=100; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2