문제 출처
https://www.acmicpc.net/problem/10872
접근 방식 및 풀이
- for문을 통해 1부터 N까지 곱해준 결과값을 출력한다.
소스 코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
long result =1;
for (int i = 1; i <=n ; i++) {
result *= i;
}
System.out.println(result);
}
}
결과
'Competition > Baekjoon' 카테고리의 다른 글
[백준] 11650 자바 좌표정렬 2차원배열 (0) | 2020.03.13 |
---|---|
[백준] 10824번 자바 (0) | 2020.03.12 |
[백준] 10866번 자바 덱 기초 (0) | 2020.03.12 |