public class Main {
public static void main (String[] agrc) {
for ( int i = 1; i < 10; i++ ) {
for ( int j = 1; j < 10; j++ ) {
System.out.print (j + " | ");
}
System.out.println();
}
}
}
Comments
replacing #42555 how to program this using java * ** *** **** use:- 1) two for loops 2) "system.out.print" and "system.out.println" i think it can understand now
Leave a comment