팩토리얼 썸네일형 리스트형 팩토리얼 팩토리얼 factorial 기본 public class FactorialTest { public static void main(String[] args) { // 명령형 매개변수 5 == 5! int input = Integer.parseInt(args[0]); if(input==0){ System.out.println("잘못 입력하셨습니다."); return; } int result = 1; for(int i=1;i 더보기 이전 1 다음