#2004
ore
Se consideră două evenimente a căror durată este exprimată fiecare prin câte trei numere naturale: ore (h
), minute (m
) şi secunde (s
). Să se scrie în fișierul de ieșire: a) pe primele două linii, duratele în formatul h: m: s
; b) pe următoarele două linii, duratele exprimate în secunde, corespunzătoare fiecărui eveniment, pe rânduri separate; c) pe următoarea linie suma obţinută din adunarea duratelor celor două evenimente, exprimată în ore, minute, secunde, în formatul h: m: s
.
Subiecte Atestat Informatica - Bucuresti
Problema | ore | Operații I/O |
ore.in /ore.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54174632 | Utilizator | |
Fișier | ore.cpp | Dimensiune | 729 B |
Data încărcării | 21 Noiembrie 2024, 12:15 | Scor / rezultat | Eroare de compilare |
ore.cpp:3:9: error: expected constructor, destructor, or type conversion before '(' token ifstream("ore.in") ^ ore.cpp:8:1: error: expected unqualified-id before '{' token { ^ ore.cpp:12:1: error: 'e1' does not name a type e1,e2,e; ^ ore.cpp: In function 'int main()': ore.cpp:15:5: error: 'cin' was not declared in this scope cin >> e1.h >> e1.m >> e1.s; ^ ore.cpp:15:5: note: suggested alternative: In file included from ore.cpp:1:0: /usr/include/c++/4.8/iostream:60:18: note: 'std::cin' extern istream cin; /// Linked to standard input ^ ore.cpp:15:12: error: 'e1' was not declared in this scope cin >> e1.h >> e1.m >> e1.s; ^ ore.cpp:16:12: error: 'e2' was not declared in this scope cin >> e2.h >> e2.m >> e2.s; ^ ore.cpp:17:5: error: 'cout' was not declared in this scope cout<< e1.h << ": " << e1.m << ": " << e1.s << endl; ^ ore.cpp:17:5: note: suggested alternative: In file included from ore.cpp:1:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^ ore.cpp:17:52: error: 'endl' was not declared in this scope cout<< e1.h << ": " << e1.m << ": " << e1.s << endl; ^ ore.cpp:17:52: note: suggested alternative: In file included from /usr/include/c++/4.8/iostream:39:0, from ore.cpp:1: /usr/include/c++/4.8/ostream:564:5: note: 'std::endl' endl(basic_ostream<_CharT, _Traits>& __os) ^ ore.cpp:19:5: error: 'n1' was not declared in this scope n1=e1.h*3600+e1.m*60+e1.s; ^ ore.cpp:20:5: error: 'n2' was not declared in this scope n2=e2.h*3600+e2.m*60+e2.s; ^ ore.cpp:22:5: error: 'e' was not declared in this scope e.s=(e1.s+e2.s) ^ ore.cpp:23:9: error: expected ';' before 'if' if(e.2>=60) ^ ore.cpp: At global scope: ore.cpp:27:1: error: 'e' does not name a type e.m=e.m+(e1.m+e2.m) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema ore 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ă.