#2271
ProdMax1
Se dă un șir cu n
numere întregi. Determinați cel mai mare număr care poate fi scris ca produs de două elemente ale șirului.
Problema | ProdMax1 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #37305994 | Utilizator | |
Fișier | prodmax1.cpp | Dimensiune | 607 B |
Data încărcării | 05 August 2022, 16:26 | Scor / rezultat | Eroare de compilare |
prodmax1.cpp: In function 'int main()': prodmax1.cpp:8:24: error: expected initializer before 'p1' unsigned long lonp p1=0,p2=0,n1=0,n2=0; ^ prodmax1.cpp:13:14: error: 'p1' was not declared in this scope cin>>p1>>p2; ^ prodmax1.cpp:13:18: error: 'p2' was not declared in this scope cin>>p1>>p2; ^ prodmax1.cpp:22:22: error: 'p2' was not declared in this scope if( x >= p2 ){ p1 = p2; p2 = x; } ^ prodmax1.cpp:22:28: error: 'p1' was not declared in this scope if( x >= p2 ){ p1 = p2; p2 = x; } ^ prodmax1.cpp:23:27: error: 'p1' was not declared in this scope else if( x >= p1) p1 = x; ^ prodmax1.cpp:26:22: error: 'n2' was not declared in this scope if( x <= n2 ){ n1 = n2; n2 = x; } ^ prodmax1.cpp:26:28: error: 'n1' was not declared in this scope if( x <= n2 ){ n1 = n2; n2 = x; } ^ prodmax1.cpp:27:27: error: 'n1' was not declared in this scope else if( x <= n1) n1 = x; ^ prodmax1.cpp:31:5: error: 'n2' was not declared in this scope n2 *= n1; p2 *= p1; ^ prodmax1.cpp:31:11: error: 'n1' was not declared in this scope n2 *= n1; p2 *= p1; ^ prodmax1.cpp:31:16: error: 'p2' was not declared in this scope n2 *= n1; p2 *= p1; ^ prodmax1.cpp:31:22: error: 'p1' was not declared in this scope n2 *= n1; p2 *= p1; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema ProdMax1 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ă.