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