本帖最後由 李泳霖 於 2023-3-5 13:15 編輯
利用巢狀迴圈, 將符號*整齊排列成如下之梯形:
(上底5顆* , 下底9顆* , 高3顆*)- public class Ch21
- {
- public static void main(String args[])
- {
- for(________________)
- {
- for(________________)
- {
- System.out.print(" ");
- }
- for(________________)
- {
- System.out.print("*");
- }
- System.out.println();
- }
- }
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |