Skip to content

Instantly share code, notes, and snippets.

@vc7
Created December 19, 2019 03:35
Show Gist options
  • Save vc7/19fcccf86567c1f52c9536cd132983e7 to your computer and use it in GitHub Desktop.
Save vc7/19fcccf86567c1f52c9536cd132983e7 to your computer and use it in GitHub Desktop.
package com.j99;
public class Main {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= 9; j++) {
System.out.print(i + " * " + j + " = " + i * j);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment