標題:
for迴圈-複習(四)
[打印本頁]
作者:
陳育霖
時間:
2023-7-5 22:20
標題:
for迴圈-複習(四)
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳姿瑜
時間:
2023-7-6 20:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int m=5;m>i;m--)
{
cout<<" ";
}
for(int n=0;n<2*i-1;n++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳沁寧
時間:
2023-7-6 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for (int i = 0; i <= 4; i++){
for (int j = 3; j >= i; j--){
cout << " ";
}
for (int s = 1; s <= (i * 2) + 1; s++){
cout << "*";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
楊承樺
時間:
2023-7-6 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1;a<=5;a++)
{
for(int b=1;b<=-a+5;b++)
{
cout<<" ";
}
for(int c=1;c<=a*2-1;c++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
孟涵
時間:
2023-7-6 20:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=5; j>i; j--)
{
cout<<" ";
}
for(int a=1; a<=2*i-1; a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李東諺
時間:
2023-7-6 20:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=5-i; j++)
{
cout<<" ";
}
for(int n=1; n<=2*i-1;n++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蕭宏宇
時間:
2023-7-6 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=1;x<=5;x++)
{
for(int y=5;y>x;y--)
{
cout<<" ";
}
for(int z=1;z<=x*2-1;z++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林家鉌
時間:
2023-7-6 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
cout<<"the height of the triangle : ";
cin>>a;
for(int b=a;b>0;b--)
{
for(int c=0;c<b;c++)
{
cout<<" ";
}
for(float d=a;d>=b;d-=0.5)
{
cout<<"*";
}
cout<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
徐楷恩
時間:
2023-7-6 20:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=5-i;j++)
{
cout<<" ";
}
for(int a=1;a<=i*2-1;a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李晨希
時間:
2023-7-10 14:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1;a<=5;a++)//行數
{
for(int b=4;b>=a;b--)//空白
{
cout<<" ";
}
for(int c=1;c<a*2;c++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2