本帖最後由 陳品肇 於 2021-10-30 11:35 編輯
方法一:- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- // alt+41401 ★ 41400☆
- // 垂直方向
- for(int i=5;i>=1;i--)
- {
- // 橫軸的方向
- for(int j=1;j<=i;j++)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 方法二:- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- // 垂直方向
- for(int i=1;i<=5;i++)
- {
- // 橫軸的方向
- for(int j=5;j>=i;j--)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |