Skip to content

Instantly share code, notes, and snippets.

@canokay
Created November 15, 2018 08:30
Show Gist options
  • Save canokay/511a3aa48fe0e860499ffea9515d837a to your computer and use it in GitHub Desktop.
Save canokay/511a3aa48fe0e860499ffea9515d837a to your computer and use it in GitHub Desktop.
Java For Example
public class ForExample {
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
System.out.println(i + "*" + j + " = " + i * j);
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment