문제

 

풀이

for() 구문 첫 문제.

N 값을 입력받고, N*1 ~ N*9까지 출력하면 되므로 for (int i=1; i<10; i++) 와 같이 사용할 수 있다.

 

소스코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Scanner;
 
public class Main{
    public static void main(String[] args) {
        
        Scanner num = new Scanner(System.in);
        
        int N = num.nextInt();
        int i;
        num.close();
        
        for(i=1; i<10; i++) {
            System.out.printf("%d * %d = %d\n", N, i, N*i);
        }
    }
}
 
cs

 

+ Recent posts