【基礎題】【for迴圈】二重迴圈
1.輸出以下格式
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
1 2 3 4 5 6
1 2 3 4 5 6 7
1 2 3 4 5 6 7 8
1 2 3 4 5 6 7 8 9
程式碼:
package com.itheima;
public class Main {
public static void main(String[] args) {
for(int i=1;i<10;i++){
for(int j=1;j<=i;j++){
System.out.print(j +" ");
}
System.out.println();
}
}
}
2.輸出以下格式
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
1 2 3 4 5 6
1 2 3 4 5 6 7
1 2 3 4 5 6 7 8
1 2 3 4 5 6 7 8 9
程式碼:
package com.itheima;
public class Main {
public static void main(String[] args) {
for(int i=1;i<10;i++){
for(int k=1;k<2*(10-i);k++){
System.out.print(" ");
}
for(int j=1;j<=i;j++){
System.out.print(j +" ");
}
System.out.println();
}
}
}
3.輸出以下格式
1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8
1 2 3 4 5 6 7
1 2 3 4 5 6
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
程式碼:
package com.itheima;
public class Main {
public static void main(String[] args) {
for(int i=1;i<10;i++){
for(int j=1;j<=10-i;j++){
System.out.print(j +" ");
}
System.out.println();
}
}
}
4.輸出以下格式
1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8
1 2 3 4 5 6 7
1 2 3 4 5 6
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
程式碼:
package com.itheima;
public class Main {
public static void main(String[] args) {
for(int i=1;i<10;i++){
for(int k=1;k<2*i;k++){
System.out.print(" ");
}
for(int j=1;j<=10-i;j++){
System.out.print(j +" ");
}
System.out.println();
}
}
}
5.列印三角形圖案
*
* * *
* * * * *
* * * * * * *
* * * * * * * * *
package com.itheima;
public class Main {
public static void main(String[] args) {
for(int i=0;i<5;i++){
for(int k=0;k<-2*i + 8;k++){
System.out.print(" ");
}
for(int j=0;j<(2*i+1);j++){
System.out.print("* ");
}
System.out.println();
}
}
}
相關文章
- for迴圈、break和continue、二重迴圈
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- python 基礎 迴圈Python
- Python基礎(07):迴圈Python
- 基礎迴圈+識圖
- JAVA基礎--增強for迴圈Java
- 【Python基礎】for迴圈語句Python
- react基礎之-- 列表迴圈React
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- for 迴圈與 while 迴圈While
- while迴圈 case迴圈While
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- 【基礎題】【for迴圈】分別輸出A~Z, a ~ z。
- Python基礎-While迴圈語句PythonWhile
- python基礎 while迴圈練習PythonWhile
- Python基礎學習之迴圈Python
- 無限for迴圈(死迴圈)
- Go 基礎知識之分支迴圈Go
- Python基礎:條件判斷 & 迴圈Python
- shell基礎教程 十六: Shell until迴圈
- while迴圈以及do while迴圈While
- if for迴圈
- For 迴圈
- if迴圈
- 迴圈
- for迴圈
- 04流程控制 for迴圈,while迴圈While
- 【重溫基礎】3.迴圈和迭代
- require()迴圈引用問題UI
- 11C++迴圈結構-for迴圈(1)C++
- pythonfor迴圈Python
- javascript迴圈JavaScript
- Kotlin 迴圈Kotlin
- JavaScript for of 迴圈JavaScript
- 迴圈引用
- while迴圈While
- javaScript for迴圈JavaScript
- 迴圈群