i made ms excel example:
Anyway, I made code.
But this code is print only half. Why, why,!
for (int i = 1 ; i <= 5 ; i++) {
for (int j = 1 ; j <= 9 ; j++) {
if ( j < 10 - i ) {
System.out.print(" ");
} else
System.out.print("*");
} System.out.println();
}
Why printed only half.: (
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…