◆C#/C# : 프로그래머스 문제 풀이

[프로그래머스] 팩토리얼 C# C++

진2_ 2023. 11. 20. 10:36
728x90
반응형

[프로그래머스] 코딩테스트 입문 / 팩토리얼 /C# C++ 

 

📝문제 설명

i팩토리얼 (i!)은 1부터 i까지 정수의 곱을 의미합니다. 예를들어 5! = 5 * 4 * 3 * 2 * 1 = 120 입니다. 정수 n이 주어질 때 다음 조건을 만족하는 가장 큰 정수 i를 return 하도록 solution 함수를 완성해주세요.

 

🔎 제한사항

  • 0 < n ≤ 3,628,800

 

🎀입출력 예시

🧐 풀이

c#

using System;

public class Solution {
    public int solution(int n) {
        int answer = 0;
        int temp = 1;

        for (int i = 1; i <= 10; i++)
        {
            temp *= i;

            if (temp >= n)
            {
                answer = temp > n ? i - 1 : i;
                break;
            }
        }

        return answer;
    }
}

 

c++

 

#include <string>
#include <vector>

using namespace std;

int solution(int n) {
    int answer = 0;
    int temp = 1;
    for(int i=1; i<=n; i++){
        temp = temp*i;
        if(temp <= n) answer = i; 
        else break;
    }
    return answer;
}

 

 

728x90
반응형