Cod sursa(job #2388218)

Utilizator oogaboogauvuvwevwevwe onyetenyevwe ugwemubwem ossas oogabooga Data 25 martie 2019 19:30:58
Problema Factorial Scor 5
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.31 kb
#include <bits/stdc++.h>

using namespace std;

ifstream in("fact.in");
ofstream out("fact.out");

int MX = 100000000/2;

int main()
{
    int P;

    in>>P;

    if(P == 0)
    {
        out<<1;
        return 0;
    }

    for(int i = 1; i <= MX; ++i)
    {

    }


    return 0;
}