#1007
Matrice7
Se consideră o matrice cu n
linii şi m
coloane şi elemente numere naturale. Să se modifice matricea în felul următor: toate elementele egale cu valoarea maximă din matrice se înlocuiesc cu valoarea minimă de pe coloana lor.
Problema | Matrice7 | Operații I/O |
matrice7.in /matrice7.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #50932693 | Utilizator | |
Fișier | matrice7.cpp | Dimensiune | 1.02 KB |
Data încărcării | 14 Mai 2024, 21:18 | Scor / rezultat | Eroare de compilare |
matrice7.cpp:5:14: warning: missing terminating " character [enabled by default] ifstream fin("matrice7.in:); ^ matrice7.cpp:5:1: error: missing terminating " character ifstream fin("matrice7.in:); ^ matrice7.cpp:6:14: error: expected ',' or '...' before '(' token ofstream fout("matrice7.out"); ^ matrice7.cpp:6:30: error: expected ')' before ';' token ofstream fout("matrice7.out"); ^ matrice7.cpp: In function 'int main()': matrice7.cpp:11:10: error: invalid operands of types 'std::ifstream(std::ofstream) {aka std::basic_ifstream<char>(std::basic_ofstream<char>)}' and 'int' to binary 'operator>>' fin>>n>>m; ^ matrice7.cpp:16:24: error: invalid operands of types 'std::ifstream(std::ofstream) {aka std::basic_ifstream<char>(std::basic_ofstream<char>)}' and 'int' to binary 'operator>>' fin>>a[i][j]; ^ matrice7.cpp:38:17: error: 'fout' was not declared in this scope fout<<minim<<" "; ^ matrice7.cpp:42:17: error: 'fout' was not declared in this scope fout<<a[i][j]<<" "; ^ matrice7.cpp:45:9: error: 'fout' was not declared in this scope fout<<"\n"; ^ matrice7.cpp:47:9: error: request for member 'close' in 'fin', which is of non-class type 'std::ifstream(std::ofstream) {aka std::basic_ifstream<char>(std::basic_ofstream<char>)}' fin.close(); ^ matrice7.cpp:48:5: error: 'fout' was not declared in this scope fout.close(); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Matrice7 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ă.