* * * *
* * *
* *
*
public class CWH_PS5 {
public static void main(String[] args) {
int n = 4;
for(int i=n; i>0; i--){
for(int j =0; j < i; j++){
System.out.print("*");
}
System.out.print("\n\n");
}
}
}
* * *
public class CWH_PS5 {
public static void main(String[] args) {
int n = 4;
for(int i=n; i>0; i--){
for(int j =0; j < i; j++){
System.out.print("*");
}
System.out.print("\n\n");
}
}
}
0 Comments