Answers for "simple code for nested for to print multiplication table in java"

1

java multiplication table nested loop

public class Main {
  public static void main(String[] args) {
    for (int y = 1; y < 12; ++y) {
      for (int x = 1; x < 12; ++x) {
        System.out.printf("%4d", y*x);
      }
      System.out.println();
    }
  }
}
Posted by: Guest on January-25-2021

Code answers related to "simple code for nested for to print multiplication table in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language