본문 바로가기

자바

for(반복문)를 이용한 구구단 출력

반응형

for문을 이용한 구구단 출력 예제 입니다.

1.단을 입력한후 결과값 출력

-------------------------------

import java.util.Scanner;

public class GuguDanEx {
    public static void main(String[] args) {
       
        Scanner sc = new Scanner(System.in);
        
        System.out.print("단 입력 : ");
        int dan = sc.nextInt();
        System.out.println(dan+"단");
        System.out.println("----------");
        for(int i = 1 ; i <= 9 ; i++){
            System.out.println(dan+"*"+i+"="+(dan*i));
        }
    }
}

-----------------------------------------------------

2. 전체 구구단 출력

-----------------------------------------------------

public class GuguDanEx2 {
    public static void main(String[] args){
       
        for(int i=1;i<10;i++){
            for(int j=2;j<10;j++){
                System.out.print(j+"*"+i+"="+(j*i)+"\t");
            }
            System.out.println();
        }
    }
}

반응형