프로그래머스 120848 팩토리얼

1 개요[ | ]

프로그래머스 120848 팩토리얼

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int n) {
    int i=1, f=1;
    while(true) {
        f *= i;
        if(f > n) break;
        i++;
    }
    return i-1;
}