標題:
巢狀迴圈 - 平行四邊形 (二)
[打印本頁]
作者:
tonyh
時間:
2011-12-28 13:41
標題:
巢狀迴圈 - 平行四邊形 (二)
本帖最後由 tonyh 於 2011-12-28 13:43 編輯
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
[attach]559[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳詩凱
時間:
2011-12-28 13:50
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2011-12-28 14:07
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
作者:
陳思惟
時間:
2015-5-15 21:19
656n5mn6n9
作者:
林侑成
時間:
2015-5-15 21:23
1234567891234567897
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2