Para resolver esse problema, vamos simplismente passar por todos os valor entre 1 e , e vamos multiplicar o número pelo o valor atual.
Código para melhor entendimento:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
int n; | |
cin >> n; | |
int ans = 1; | |
for (int i = 1; i <= n; i++) ans *= i; | |
cout << ans << "\n"; | |
} |