I am new to this java theme, and I want to make the following figure. It should come out like this:
***
**
*
I used the following code:
public class MATRIZ {
public static void main(String[] args) {
for(int j=0; j<3; j++) {
for(int i=0; i<3; i++) {
System.out.print( "*" );
}
System.out.println();
}
}
}