要破解小星星的所有問題,就是找出層數與*的關係
試運用巢狀迴圈完成以下圖案:
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- for(______________)
- {
- for(______________)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //決定層數
- //有5層->執行5次的迴圈
- //初始值;結束條件;控制項
- for(int i=1;i<=5;i++){
- //決定*數
- //執行層數(i)次的迴圈
- for(int j=1;j<=i;j++){
- cout<<"*";
- }
- cout<<endl;
- }
-
- system("pause");
- return 0;
- }
複製代碼 |