標題:
[牛刀小試]菱形
[打印本頁]
作者:
李泳霖
時間:
5 天前 14:30
標題:
[牛刀小試]菱形
利用巢狀迴圈, 將符號*整齊排列成如下之菱形:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(______________)
{
if(_______)
{
for(______________)
{
cout << " ";
}
for(______________)
{
cout << "*";
}
}
else
{
for(______________)
{
cout << " ";
}
for(______________)
{
cout << "*";
}
}
cout << endl;
}
return 0;
}
複製代碼
作者:
陳玠甫
時間:
5 天前 15:25
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2