利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(_____________)
- {
- for(_____________)
- {
- cout<<" ";
- }
- for(_____________)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- //決定層數
- //執行4次的迴圈
- //初始值;結束條件;控制項
- for(int i=1;i<=4;i++){
- //決定空格數
- //執行(4-層數)次的迴圈
- for(int k=1;k<=4-i;k++){
- cout<<" ";
- }
- //決定*數
- //執行10次的迴圈
- for(int j=1;j<=10;j++){
- cout<<"*";
- }
- cout<<endl;
- }
-
- system("pause");
- return 0;
- }
複製代碼 |