Last active
July 8, 2023 09:46
-
-
Save YongWanJin/bd6e4792f17efa0978d9103da9da6e09 to your computer and use it in GitHub Desktop.
제로베이스 백엔드 1주차 미니과제 1번
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
진용완 | |
제로베이스 백엔드 스쿨 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