本帖最後由 李泳霖 於 2022-1-26 14:50 編輯
上底7 下底4 高4 之 * 號排列而成的倒梯形- public class Ch22{
- public static void main(String args[])
- {
- for(________________)
- {
- for(________________)
- {
- System.out.print(" ");
- }
- for(________________)
- {
- System.out.print("*");
- }
- System.out.println();
- }
- }
- }
複製代碼 i(列) 1 2 3 4
j(空白) 0 1 2 3
k(星星) 7 6 5 4
本帖隱藏的內容需要回復才可以瀏覽 |