Skip to content

Instantly share code, notes, and snippets.

@YongWanJin
Last active July 8, 2023 09:46
Show Gist options
  • Save YongWanJin/bd6e4792f17efa0978d9103da9da6e09 to your computer and use it in GitHub Desktop.
Save YongWanJin/bd6e4792f17efa0978d9103da9da6e09 to your computer and use it in GitHub Desktop.
제로베이스 백엔드 1주차 미니과제 1번
/*
진용완
제로베이스 백엔드 스쿨 15기
*/
public class Mini1Table9x9 {
public static void main(String[] args) {
System.out.println("[구구단 출력]");
for(int i = 1; i<=9; i++){
for(int j = 1; j<=9; j++){
System.out.printf("0%d x 0%d = %02d ", j, i, j*i);
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment