標題:
[作業] 小星星 4
[打印本頁]
作者:
tonyh
時間:
2014-10-25 11:51
標題:
[作業] 小星星 4
本帖最後由 tonyh 於 2014-11-1 10:28 編輯
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
[attach]1041[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(____________)
{
for(____________)
{
cout<<" ";
}
for(____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
梁和雋
時間:
2014-10-25 12:04
此帖僅作者可見
作者:
謝瀞儀
時間:
2014-10-26 22:03
此帖僅作者可見
作者:
李知易
時間:
2014-10-31 21:24
此帖僅作者可見
作者:
李知易
時間:
2014-10-31 21:48
此帖僅作者可見
作者:
洪振庭
時間:
2014-11-1 10:29
此帖僅作者可見
作者:
李大全
時間:
2014-11-1 10:32
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2