標題:
小星星 1
[打印本頁]
作者:
tonyh
時間:
2014-10-25 10:23
標題:
小星星 1
本帖最後由 tonyh 於 2014-11-8 10:57 編輯
試運用巢狀迴圈完成以下圖案:
[attach]1038[/attach]
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-10-25 10:43
本帖最後由 梁和雋 於 2014-10-25 10:49 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-10-25 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-10-25 10:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-10-25 10:46
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int j=1;j<=5;j++)
{
for(int i=1;i<=j;i++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-1 10:31
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2