Skip to content

Instantly share code, notes, and snippets.

@dongsub-joung
Last active July 3, 2023 05:04
Show Gist options
  • Save dongsub-joung/7fda658f67ee01a04ce800bb8c9bd6db to your computer and use it in GitHub Desktop.
Save dongsub-joung/7fda658f67ee01a04ce800bb8c9bd6db to your computer and use it in GitHub Desktop.
the MultiplicationTable print
// 정동섭
public class MultiplicationTable {
public static void main(String[] args) {
System.out.println("[구구단 출력]");
for (int first=1; first<=9; first++){
for (int sec=1; sec<=9; sec++){
System.out.print(String.format("%02d X %02d = %2d ", sec,first, first*sec));
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment