N팩토리얼(1부터 N까지의 수를 모두 곱한 값) 을 구하는 문제 반복문을 활용할 수 있다면 간단히 해결 가능. 전체 코드는 다음과 같다. // 해설참조 : sehyeok.tistory.com import java.util.Scanner; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int p = 1; for (int i = 1; i