728x90
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
public class JavaStudy01 {
public JavaStudy01() {
}
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.print(j + " x " + i + " = " + String.format("%2d", i * j));
System.out.print(" ");
}
System.out.println();
}
}
}
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
public class JavaStudy01 {
public JavaStudy01() {
}
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.print(j + " x " + i + " = " + String.format("%2d", i * j));
System.out.print(" ");
}
System.out.println();
}
}
}
728x90
'하지의 코딩일지 > JAVA TEST' 카테고리의 다른 글
자바 후보자 투표 가상시뮬레이션 테스트 (0) | 2023.07.08 |
---|---|
달력 생성기 (테스트) (0) | 2023.07.07 |
놀이공원 입장권 계산(테스트) (0) | 2023.07.07 |
주민번호 랜덤 생성기(테스트) (0) | 2023.07.05 |
캐시백 계산 (테스트) (0) | 2023.07.05 |