本文共 529 字,大约阅读时间需要 1 分钟。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | package practiceGO; /** * ***** * * * * * * * * * * ***** */ public class Cto { public static void main(String[] args) { for ( int i= 0 ; i< 5 ; i++){ for ( int j= 0 ; j< 5 ; j++){ if (i== 0 || i== 4 ) { System.out.print( "*" ); } else { if (j== 0 || j== 4 ) { System.out.print( "*" ); } else { System.out.print( " " ); } } } System.out.println(); } } } |
运行结果:
1 2 3 4 5 | ***** * * * * * * ***** |
转载地址:http://btkfl.baihongyu.com/