한 걸음 두 걸음
백준 10872 팩토리얼 / java 본문
반응형
import java.io.IOException;
import java.math.BigInteger;
import java.util.*;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
BigInteger result = new BigInteger("1");
for(int i = 1 ; i <= num; i++) {
result = result.multiply(BigInteger.valueOf(i));
}
System.out.println(result);
}
}
반응형
'CSE > baekjoon & swexpert' 카테고리의 다른 글
백준 1697 숨바꼭질 java (0) | 2019.05.27 |
---|---|
보류 > 메모리초과 (0) | 2019.04.27 |
백준 1676 팩토리얼 0의 개수 / java (0) | 2019.04.27 |
Jaccard Index 구하는 JAVA 소스코드 (0) | 2019.04.16 |
백준 11723 집합 ] HashSet Collection 사용 (0) | 2019.04.13 |