標題:
for迴圈 : 第1名~第10名
[打印本頁]
作者:
游東祥
時間:
2014-1-24 09:41
標題:
for迴圈 : 第1名~第10名
[attach]826[/attach]
利用 for 迴圈在畫面上顯示第1名~第10名
作者:
陳婉平
時間:
2014-1-24 09:43
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i=1; i<=10; i=i+1)
{
cout << "第" <<i <<"名" <<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-1-24 09:43
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "非手工" << endl;
for (int i = 1; i <= 10; i=i+1)
{
cout << "第" << i << "名" <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃詠軒
時間:
2014-1-24 09:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int i = 1; i <= 10; i=i+1)
{
cout << "第" << i << "名" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉得恩
時間:
2014-1-24 09:44
本帖最後由 劉得恩 於 2014-1-24 09:45 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10;i++)
{
cout<<"第"<<i<<"名\n";
}
system("PAUSE");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-1-24 09:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i=1; i<=10; i=i+1)
{
cout << "第" << i <<"名" <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
朱俐蒨
時間:
2014-1-24 09:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=10;i=i+1)
{
cout<<"第"<<i<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳均
時間:
2014-1-24 09:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int i=1; i <=10 ; i=i+1)
{
cout<<"第"<< i <<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡維庭
時間:
2014-1-24 09:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i=1; i <= 10; i=i+1)
{
cout << "第" << i << "名" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉怡修
時間:
2014-1-24 09:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i,10;i++)
{
cout<<"第"<<i<<"名"<<
}
system("pause");
return 0;
}
複製代碼
作者:
劉芝均
時間:
2014-1-24 09:47
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i <= 10; i++)
{
cout<<"第"<<i<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭品君
時間:
2014-1-24 09:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"非手工:"<<endl;
for(int i=1;i<=10;i=i+1)
{cout<<"第"<<i<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉凱平
時間:
2014-1-24 09:50
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i=1;i<=10;i=i+1)
{
cout<<"第"<<i<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃國清
時間:
2014-1-24 09:54
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for( int x=100 ; x>=0 ; x=x-1 )
{
cout<<"剩"<<x<<"秒"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2