#9
maxmin
Să se scrie un program care citeşte de la tastatură trei numere naturale și determină diferenţa dintre cel mai mare şi cel mai mic.
Problema | maxmin | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54163509 | Utilizator | |
Fișier | maxmin.cpp | Dimensiune | 354 B |
Data încărcării | 21 Noiembrie 2024, 09:16 | Scor / rezultat | Eroare de compilare |
maxmin.cpp: In function 'int main()': maxmin.cpp:10:13: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator<' if (a < min) min = a; ^ maxmin.cpp:10:22: error: overloaded function with no contextual type information if (a < min) min = a; ^ maxmin.cpp:11:13: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator<' if (b < min) min = b; ^ maxmin.cpp:11:22: error: overloaded function with no contextual type information if (b < min) min = b; ^ maxmin.cpp:12:13: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator<' if (c < min) min = c; ^ maxmin.cpp:12:22: error: overloaded function with no contextual type information if (c < min) min = c; ^ maxmin.cpp:18:18: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator-' cout<< max - min; ^ maxmin.cpp:7:15: warning: unused variable 'main' [-Wunused-variable] int a,b,c,main = 99999999, max = 0; // 10 7 5 ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema maxmin 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ă.