1 public class ForLoopSimple {2 public static void main(String [] args){3 int j = 9;4 5 for (int i = 0; i < 10; i++){6 j = j*i;7 }8 }9 }10