|
[挑戰題]小星星-直角三角形
本帖最後由 李泳霖 於 2023-8-15 14:01 編輯
試運用巢狀迴圈完成以下圖案:
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- for(______________)
- {
- for(______________)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |
|