Cod sursa(job #903677)
Utilizator | Data | 2 martie 2013 13:17:53 | |
---|---|---|---|
Problema | Fractii | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#define NMAX 4000
using namespace std;
int v[NMAX][NMAX];
int main()
{
for(int i=1;i<NMAX;i++)
for(int j=1;j<NMAX;j++)
v[i][j] = 1;
}