標題:
for 迴圈
[打印本頁]
作者:
蔡昀儒
時間:
2019-7-30 11:13
標題:
for 迴圈
[attach]6902[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
for (x=1;x<=6;x++)
{
cout<<"第"<<x<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
龔品誠
時間:
2019-7-30 11:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
for (x=1;x<=6;x++)
{
cout<<"第"<<x<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
薛博仁
時間:
2019-7-30 11:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=1;x<=10;x++)
{
cout<<"第"<<x<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張博評
時間:
2019-7-30 11:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
for(x=1;x<=6;x++)
{
cout<<"第"<<x<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
立晟
時間:
2019-7-30 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
for(x=1;x<=6;x++)
{
cout<<"第"<<x<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃鋐粟
時間:
2019-7-30 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;
for(m=1;m<=6;m++)
{
cout<<"第"<<m<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳柏臻
時間:
2019-7-30 11:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
for(x=1;x<=6;x++)
{cout<<"第"<<x<<"名"<<endl;}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2