JAVA面向過程(三十) 嵌套循環

   在一個循環語句內部再嵌套一個或多個循環,稱爲嵌套循環。while、do-while與for循環可以任意嵌套多層。 【示例3-14】嵌套循環  1 2 3 4 5 6 7 8 9 10 public class Test14 {     public static void main(String args[]) {         for (int i=1; i <=5; i++) {   
相關文章
相關標籤/搜索