Cod sursa(job #2177400)
| Utilizator | Data | 18 martie 2018 15:55:59 | |
|---|---|---|---|
| Problema | Factorial | Scor | 5 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
unsigned long long int n;
ifstream fin("fact.in");
ofstream fout("fact.out");
int main()
{
fin >> n;
if (n == 0) {
fout << 1;
return 0;
}
return 0;
}
