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
반응형
'◆C# > C# : 프로그래머스 문제 풀이' 카테고리의 다른 글
[프로그래머스] 문자열을 정수로 변환하기 / C++ 풀이 (0) | 2024.11.23 |
---|---|
[프로그래머스] flag에 따라 다른 값 반환하기 / C++ 풀이 (0) | 2024.11.23 |
[프로그래머스] 주사위의 개수 C# , C++ (0) | 2023.11.16 |
[프로그래머스]배열 회전시키기 C# C++ (0) | 2023.11.14 |
[프로그래머스] 공 던지기 C#, C++ (0) | 2023.11.13 |