練習完上一題,接下來請試做一與上題反向 長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- for(int i=1; i<=4; i++)
- {
- for(int j=1; j<i; j++)
- {
- cout<<" ";
- }
- for(int k=1; k<=10; k++)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |