#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 | #53889727 | Utilizator | |
Fișier | maxmat.cpp | Dimensiune | 939 B |
Data încărcării | 14 Noiembrie 2024, 08:42 | Scor / rezultat | Eroare de compilare |
maxmat.cpp:10:1: error: 'intn' does not name a type intn,m,maxi,a[1001][1001]; ^ maxmat.cpp: In function 'int main()': maxmat.cpp:13:10: error: 'n' was not declared in this scope cin>>n>>m>>x; ^ maxmat.cpp:13:13: error: 'm' was not declared in this scope cin>>n>>m>>x; ^ maxmat.cpp:13:16: error: 'x' was not declared in this scope cin>>n>>m>>x; ^ maxmat.cpp:14:16: error: 'a' was not declared in this scope citire(n,m,a); ^ maxmat.cpp:15:18: error: 'maxi' was not declared in this scope maxmat(n,m,a,maxi); ^ maxmat.cpp: In function 'void citire(int, int, int (*)[100])': maxmat.cpp:22:16: error: cannot bind 'std::basic_istream<char>::__istream_type {aka std::basic_istream<char>}' lvalue to 'std::basic_istream<char>&&' cin>>a[i][j]>>" "; ^ In file included from /usr/include/c++/4.8/iostream:40:0, from maxmat.cpp:1: /usr/include/c++/4.8/istream:872:5: error: initializing argument 1 of 'std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&&, _Tp&) [with _CharT = char; _Traits = std::char_traits<char>; _Tp = const char [2]]' operator>>(basic_istream<_CharT, _Traits>&& __is, _Tp& __x) ^ maxmat.cpp: In function 'int afisare(int, int, int (*)[100])': maxmat.cpp:30:1: error: expected ';' before '}' token } ^ maxmat.cpp:30:1: warning: no return statement in function returning non-void [-Wreturn-type] maxmat.cpp: In function 'void maxmat(int, int, int (*)[100], int)': maxmat.cpp:33:9: error: declaration of 'int maxi' shadows a parameter int maxi=-1001; ^ maxmat.cpp:39:1: error: expected ';' before '}' token } ^
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ă.