#1
sum
Să se scrie un program care citeşte din fişier două numere întregi şi determină suma lor.
Problema | sum | Operații I/O |
sum.in /sum.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54404474 | Utilizator | |
Fișier | sum.cpp | Dimensiune | 187 B |
Data încărcării | 27 Noiembrie 2024, 18:06 | Scor / rezultat | Eroare de compilare |
sum.cpp:5:14: warning: missing terminating " character [enabled by default] ifstream fin("sum.in”); ^ sum.cpp:5:1: error: missing terminating " character ifstream fin("sum.in”); ^ sum.cpp:6:15: warning: missing terminating " character [enabled by default] ofstream fout("sum.out”); ^ sum.cpp:6:1: error: missing terminating " character ofstream fout("sum.out”); ^ sum.cpp:9:1: error: expected ')' before '{' token { ^ sum.cpp:9:1: error: expected ')' before '{' token sum.cpp: In function 'std::ifstream fin(std::ofstream (*)(int (*)()))': sum.cpp:10:20: error: invalid operands of types 'std::ifstream(std::ofstream (*)(int (*)())) {aka std::basic_ifstream<char>(std::basic_ofstream<char> (*)(int (*)()))}' and 'int' to binary 'operator>>' int a, b; fin>>a>>b; fout<<a+b; return 0; ^ sum.cpp:10:34: error: invalid operands of types 'std::ofstream (*)(int (*)()) {aka std::basic_ofstream<char> (*)(int (*)())}' and 'int' to binary 'operator<<' int a, b; fin>>a>>b; fout<<a+b; return 0; ^ sum.cpp:10:33: warning: suggest parentheses around '+' inside '<<' [-Wparentheses] int a, b; fin>>a>>b; fout<<a+b; return 0; ^ sum.cpp:10:44: error: could not convert '0' from 'int' to 'std::ifstream {aka std::basic_ifstream<char>}' int a, b; fin>>a>>b; fout<<a+b; return 0; ^ sum.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema sum 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ă.