利用巢狀迴圈, 將符號*整齊排列成如下之梯形:
(上底5顆* , 下底9顆* , 高3顆*)- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(int i=1; i<=3; i++)
- {
- for(int j=1; j<=3-i; j++)
- {
- cout<<" ";
- }
- for(int k=1; k<=i*2+3; k++)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |