Escrito por Thiago Mota
Para resolver este problema, podemos fazer um for indo de até , multiplicando todo mundo e calculando o fatorial:
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 fat = 1; // 1 * x = x, serve como número padrao | |
for(int i = 1; i <= n; i++) { | |
fat = fat * i; | |
} | |
cout << fat << "\n"; | |
return 0; | |
} |
Também existe a solução por Funções Recursivas, como foi feito por Lidiane:
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
// Codigo por Lidiane Gomes | |
#include <bits/stdc++.h> | |
using namespace std; | |
int fat(int n) | |
{ | |
if(n == 1) | |
return 1; | |
return n * fat(n - 1); | |
} | |
int main(int argc, char** argv) | |
{ | |
int p; | |
cin >> p; | |
cout << fat(p) << endl; | |
return 0; | |
} |