標題:
【課堂練習】小星星 (六)
[打印本頁]
作者:
陳育霖
時間:
2023-6-15 01:14
標題:
【課堂練習】小星星 (六)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王閎民
時間:
2023-6-15 20:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=4;a>=0;a--)
{
for(int i=3;i>=a;i--)
{
cout<<" ";
}
for(int j=-2;j<a*2-1;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李東諺
時間:
2023-6-15 20:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=4;a>=0;a--)
{
for(int i=3;i>=a;i--)
{
cout<<" ";
}
for(int j=-2;j<a*2-1;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
楊承樺
時間:
2023-6-15 20:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1;a<=5;a++)
{
for(int b=1;b<a;b++)
{
cout<<" ";
}
for(int c=1;c<=11-a*2;c++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳沁寧
時間:
2023-6-15 20:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i = 0; i < 5; i++){ // i = 0,1,2,3,4
for(int o = 1; o <= i; o++){
cout << " ";
}
for(int s = 0; s < (4 - i) * 2 + 1; s++){
cout << "*";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
孟涵
時間:
2023-6-15 20:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int k=5; k>i; k--)
{
cout<<" ";
}
for(int d=0; d<i*2-1; d++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳姿瑜
時間:
2023-6-15 20:53
#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 n=11;n>i*2;n--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李晨希
時間:
2023-6-15 20:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1;a<=5;a++)
{
for(int i=1;i<a;i++)
{
cout<<" ";
}
for(int j=1;j<=11-a*2;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐楷恩
時間:
2023-6-15 21:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int a=0;a<=(5-i)*2;a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蕭宏宇
時間:
2023-6-15 21:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i--)
{
for(int x=0;x<5-i;x++)
{
cout<<" ";
}
for(int y=0;y<i*2-1;y++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃郁甯
時間:
2023-6-19 08:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i=i-1)//排
{
for(int j=4;j>=i;j=j-1)//空格
{
cout<<" ";
}
for(int j=1;j<=i*2-1;j=j+1)//顆
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林家鉌
時間:
2023-6-19 13:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=9;
for(int i=5;i>0;i--)
{
for(int j=i;j<5;j++)
{
cout<<" ";
}
for(int k=a;k>0;k--)
{
cout<<"*";
}
cout<<"\n";
a=a-2;
}
system("pause");
return 0;
}
複製代碼
作者:
楊承諺
時間:
2023-9-9 08:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int z=1;z<=11-i*2;z++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳曜誌
時間:
2024-7-20 15:12
本帖最後由 陳曜誌 於 2024-7-20 15:23 編輯
#include<iostream>
using namespace std;
int main()
{
int i,j,k;
for(int i=5; i>=1; i--) //i=1 2 3 4 5
{
for(int j=1; j<=(5-i); j++) // i=1 j=4
{
cout<<" ";
}
for(int j=1; j<=(2*i-1); j++) //k=1
{
cout<<"*";
}
// for(int j=0; j<=(5-i); j++) // i=1 j=4
// {
// cout<<" ";
// }
cout<<endl;
}
}
/*
i = 5 4 3 2 1
space = 0 1 2 3 4
star = 9 7 5 3 1
ttps://www.youtube.com/watch?v=754dbjx5xIw
*/
複製代碼
作者:
李昱辰
時間:
2024-7-21 17:30
#include<iostream>
using namespace std;
int main()
{
int i,j,k;
for(i=5;i>=1;i--)
{
for(j=5;j>i;j--)
{
cout<<" ";
}
for(k=1;k<=(2*i-1);k++)
{
cout<<"*";
}
cout<<endl;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2