標題:
禮多人不怪
[打印本頁]
作者:
may
時間:
2013-8-24 17:16
標題:
禮多人不怪
有千千萬萬種寫法,可用for迴圈,say hello10次
作者:
李彥彤
時間:
2013-8-24 17:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int i=1;i<=10;i++)
{
cout<<"hello"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-8-24 17:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i = 1;i <= 10; i++)
{
cout << "hello" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-8-24 17:21
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=6;i<=15;i++)
{
cout<<"hello"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-8-24 17:21
本帖最後由 周雍程 於 2013-8-24 17:34 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i =11 ; i <= 20; i++)
{
cout << "hello" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李彥彤
時間:
2013-8-24 17:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int a=1;a<=10;a++)
{
cout<<"hello"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-8-24 17:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
for (int i=5;i<=14;i++)
{
cout<<"hello"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-8-24 17:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-8-24 17:26
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i = 15;i <= 24; i++)
cout<<"hello"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-24 17:35
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
for (int i=10;i<=19;i++)
{
cout<<"hello"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-31 16:56
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=20;i<=39;i+=2)
{
cout<<"hello"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2