java 구구단

canyi·2023년 6월 14일
0

java m1

목록 보기
8/40
public class ex11_99단 {
    public static void main(String[] args) {
        for(int i=1; i < 10; i++) {
            for(int j=1; j < 10; j++) {
                int result = i * j;
                System.out.println(i + " x " + j + " = " + result);
            }
            System.out.println();
        }
    }
}
profile
백엔드 개발 정리

0개의 댓글