프로그래머스(Level 0) - ❗ 팩토리얼

Gammi·2023년 1월 9일
0

프로그래머스

목록 보기
20/69

✔ 문제






✔ 해결


class Solution {
  public int solution(int n) {
    int answer = 0, result = 1;
    for(int i = 1; i <=10; i++) {
      result *= i;
      if(n >= result) {
        answer = i;
      }
    }
    return answer;
  }
}

  • 팩토리얼은 n부터 1까지 곱하는 거니까 for문도 1부터 시작하고 곱한 값을 넣어줄 변수 result도 1부터 시작함!
profile
개발자가 되었어요⭐️

0개의 댓글