#191
MaxMat
Să se determine, pentru fiecare linie a unei matrice, elementul maxim și indicele coloanei pe care se află.
Problema | MaxMat | Operații I/O |
maxmat.in /maxmat.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53888683 | Utilizator | |
Fișier | maxmat.cpp | Dimensiune | 996 B |
Data încărcării | 14 Noiembrie 2024, 08:28 | Scor / rezultat | Eroare de compilare |
maxmat.cpp:3:1: error: 'ifstream' does not name a type ifstream fin("maxmat.in"); ^ maxmat.cpp:4:1: error: 'ofstream' does not name a type ofstream fout("maxmat.out"); ^ maxmat.cpp: In function 'void citire(int&, int&, int (*)[101])': maxmat.cpp:11:13: error: 'fin' was not declared in this scope fin >> a[i][j]; ^ maxmat.cpp: In function 'void afisare(int, int, int (*)[101])': maxmat.cpp:18:26: error: expected initializer before '<=' token for(int j = i, j <= m; j++) ^ maxmat.cpp:18:26: error: expected ';' before '<=' token maxmat.cpp:18:26: error: expected primary-expression before '<=' token maxmat.cpp:19:13: error: 'fout' was not declared in this scope fout << a[i][j] << ' '; ^ maxmat.cpp:21:5: error: 'fout' was not declared in this scope fout << endl; ^ maxmat.cpp: In function 'void MaxiMat(int, int, int (*)[101], int&, int&)': maxmat.cpp:26:15: error: declaration of 'int ind' shadows a parameter int maxi, ind; ^ maxmat.cpp: In function 'int main()': maxmat.cpp:44:5: error: 'fin' was not declared in this scope fin >> n >> m; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema MaxMat face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.