Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
2004 - Ore
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python" line> # 2004 Ore def validare(event1_validare, event2_validare): for event in [event1_validare, event2_validare]: # Parcurgem lista de evenimente h, m, s = event # Verificăm dacă orele sunt în intervalul 1-24 if h < 1 or h > 24: raise ValueError # Verificăm dacă minutele sunt în intervalul 0-60 if m < 0 or m > 60: raise ValueError # Verificăm dacă secundele sunt în intervalul 0-60 if s < 0 or s > 60: raise ValueError file_out.write("Datele de intrare corespund restrictiilor impuse\n") def calculeaza_durata(event1, event2): # Calculăm durata în secunde pentru fiecare eveniment sec1 = event1[0] * 3600 + event1[1] * 60 + event1[2] sec2 = event2[0] * 3600 + event2[1] * 60 + event2[2] # Calculăm suma duratelor total_sec = sec1 + sec2 # Convertim suma duratelor înapoi în ore, minute și secunde total_o, total_sec = divmod(total_sec, 3600) total_m, total_s = divmod(total_sec, 60) return sec1, sec2, total_o, total_m, total_s if __name__ == '__main__': file_in = open("orein.txt", "r") file_out = open("oreout.txt", "w") try: # Citim datele pentru fiecare eveniment event1_main = list(map(int, file_in.readline().split())) event2_main = list(map(int, file_in.readline().split())) # Validăm datele de intrare validare(event1_main, event2_main) # Calculăm durata în secunde și suma duratelor sec1_main, sec2_main, total_o_main, total_m_main, total_s_main = calculeaza_durata(event1_main, event2_main) # Scriem rezultatele în fișierul de ieșire file_out.write(f'{event1_main[0]}: {event1_main[1]}: {event1_main[2]}\n') file_out.write(f'{event2_main[0]}: {event2_main[1]}: {event2_main[2]}\n') file_out.write(f'{sec1_main}\n{sec2_main}\n') file_out.write(f'{total_o_main}: {total_m_main}: {total_s_main}\n') # Dacă datele de intrare nu sunt valide, afișăm un mesaj de eroare except ValueError: file_out.write("Datele de intrare nu corespund restrictiilor impuse") # Dacă datele de intrare sunt incomplete, afișăm un mesaj de eroare except IndexError: file_out.write("Datele de intrare nu corespund restrictiilor impuse") </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width