標題:
[作業] 小星星 6
[打印本頁]
作者:
方浩葦
時間:
2024-6-22 06:47
標題:
[作業] 小星星 6
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-6-22 14:51
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=9;
for(int i=1 ; i<=5 ; i++)
{
for(int j=2 ; j<=i ; j++)
{
cout<<" ";
}
for(int k=1 ; k<=x; k++)
{
cout<<"*";
}
x-=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2024-6-22 15:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=5;i++)
{
for(int j=1;j<i;j++)
{
cout<<" ";
}
for(int k=9;k>=2*i-1;k--)
{cout<<"*";}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-6-22 16:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9;
for(int i=1; i<=5; i++)
{
for(int j=2; j<=i; j++)
{
cout<<" ";
}
for(int k=1; k<=x; k++)
{
cout<<"*";
}
x-=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-6-23 13:26
本帖最後由 洪榮辰 於 2024-6-28 19:58 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9;
for(int i=1; i<=5; i++)
{
for(int j=2; j<=i; j++)
{
cout<<" ";
}
for(int k=1; k<=x; k++)
{
cout<<"*";
}
x-=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-6-27 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=5;i++){
for(int j=1;j<i;j++){
cout<<" ";
}
for(int k=9;k>=i*2-1;k--){
cout<<"*";
}cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-28 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=5;i++){
for(int j=1;j<i;j++){
cout<<" ";
}
for(int k=9;k>=i*2-1;k--){
cout<<"*";
}cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2