#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 | #55183655 | Utilizator | |
Fișier | maxmat.cpp | Dimensiune | 590 B |
Data încărcării | 04 Ianuarie 2025, 13:57 | Scor / rezultat | Eroare de compilare |
maxmat.cpp:5:1: error: expected ',' or ';' before 'ofstream' ofstream fout("maxmat.out") ^ maxmat.cpp: In function 'int main()': maxmat.cpp:9:10: error: 'n' was not declared in this scope fin>>n>>m; ^ maxmat.cpp:9:13: error: 'm' was not declared in this scope fin>>n>>m; ^ maxmat.cpp:10:9: error: 'i' was not declared in this scope for(i=1;i<=n;i++) ^ maxmat.cpp:12:13: error: 'j' was not declared in this scope for(j=1;j<=m;j++) ^ maxmat.cpp:14:18: error: 'a' was not declared in this scope fin>>a[i][j]; ^ maxmat.cpp:17:9: error: 'i' was not declared in this scope for(i=1;i<=n;i++) ^ maxmat.cpp:19:9: error: 'maxim' was not declared in this scope maxim=a[i][1]; ^ maxmat.cpp:19:15: error: 'a' was not declared in this scope maxim=a[i][1]; ^ maxmat.cpp:20:9: error: 'q' was not declared in this scope q=1; ^ maxmat.cpp:21:13: error: 'j' was not declared in this scope for(j=2;j<=m;j++) ^ maxmat.cpp:29:9: error: 'fout' was not declared in this scope fout<<maxim<<" "<<q<<endl; ^
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ă.