#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 | #54173651 | Utilizator | |
Fișier | ore.cpp | Dimensiune | 589 B |
Data încărcării | 21 Noiembrie 2024, 11:55 | Scor / rezultat | Eroare de compilare |
ore.cpp:3:1: error: 'ifstream' does not name a type ifstream fin("ore.in"); ^ ore.cpp:4:1: error: 'ifstream' does not name a type ifstream fout("ore.out"); ^ ore.cpp:9:4: error: 'e1' does not name a type }; e1,e2,e; ^ ore.cpp: In function 'int main()': ore.cpp:12:10: error: 'e1' was not declared in this scope cin>>e1.h>>e2.m>>e1.s; ^ ore.cpp:12:16: error: 'e2' was not declared in this scope cin>>e1.h>>e2.m>>e1.s; ^ ore.cpp:14:16: error: expected ';' before string constant cout<<e1.h": "<<e1.m<<": "<<e1.s<<endl; ^ ore.cpp:15:4: error: 'n1' was not declared in this scope n1=e1.h*3600+e1.m*60+e1.s ^ ore.cpp:16:4: error: expected ';' before 'n2' n2=e2.h*3600+e2.m*60+e2.s ^ ore.cpp:18:1: error: 'e' was not declared in this scope e.s=(e1.s+e2.s); ^ ore.cpp:19:5: error: expected ')' before numeric constant if(e.2>=60) ^ ore.cpp: At global scope: ore.cpp:23:5: error: 'e' does not name a type e.m=e.m+(e1.m+e2.m) ^ ore.cpp:29:7: error: 'e' does not name a type e.h=e.h+(e1.h+e1.h) ^
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ă.