本帖最後由 李泳霖 於 2022-8-18 15:58 編輯
設計說明:
(1程式內有一陣列{"A","B","C","D","E","F","G","H","I","J"}。
(2)請使用陣列方式寫出反轉陣列的程式,顯示{"J","I","H","G","F","E","D","C","B","A"}。
(3)顯示如執行結果參考畫面。
- public class Test01{
- public static void main(String[] argv) {
- String[] data = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J"};
- System.out.print("反轉陣列資料之前: ");
-
- ...
- ...
-
-
- System.out.print("反轉陣列資料之後: ");
- ..
- ..
-
- }
-
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽
本帖隱藏的內容需要回復才可以瀏覽 |