標題:
[作業] 小星星 6
[打印本頁]
作者:
方浩葦
時間:
2024-4-4 10:20
標題:
[作業] 小星星 6
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭豊翰
時間:
2024-4-20 10:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<5; i++)
{
for(int k=i; k>=1; k--)
{
cout<<" ";
}
for(int y=9; y>i*2; y-- )
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
回復
1#
方浩葦
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2