用嵌套的for循環(huán)編寫程序,要求通過這個嵌套的循環(huán)在屏幕上打印下列圖案:
2 回答

米琪卡哇伊
TA貢獻1998條經(jīng)驗 獲得超6個贊
圖片上的圖形輸出代碼:
public class demo{ public static void main(String[] args){ for ( int i= 1 ;i<= 9 ;i++){ for ( int z=( 9 -i)* 2 ;z>= 1 ;z--){ System.out.print( " " ); } for ( int x= 1 ;x<=i;x++){ System.out.print(x+ " " ); } for ( int y=i- 1 ;y>= 1 ;y--){ System.out.print(y+ " " ); } System.out.println(); } } } |
顯示一個整數(shù)的所有素數(shù)因子:
public class demo { public static void main(String[] args) throws Exception { Scanner cin = new Scanner(System.in); System.out.print( "請輸入一個正整數(shù):" ); int n = cin.nextInt(); System.out.print(n + "=" ); int count = 0 ; for ( int i = 2 ; i <= n; i++) { if (n % i == 0 ) { if (count == 0 ) System.out.print(i); else System.out.print( "*" + i); count++; n = n / i; i--; } } } } |

寶慕林4294392
TA貢獻2021條經(jīng)驗 獲得超8個贊
1、首先打開編譯器,首先輸入頭文件,寫好Main函數(shù),定義好需要用到的變量,如下圖所示。
2、然后寫下第一個For循環(huán),也是外圍的for循環(huán),為了便于觀察結果,這里使用Printf函數(shù)在每次循環(huán)時,打印變量的值,如下圖所示。
3、在外圍For循環(huán)內部再寫下一個for循環(huán),其中的變量可以獨立變化,也可以與外圍for循環(huán)中的變量建立關系,如下圖所示。
4、調試并運行程序,如下圖所示。
5、此時,通過觀察程序運行結果可以看到,外圍for循環(huán)每進行一次,內部嵌套的for循環(huán)就要完整進行一輪,如下圖所示。
添加回答
舉報
0/150
提交
取消