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
0461 - Timp1
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!
==Cerința== Se dau numerele naturale h m, reprezentând ora curentă exprimată în ore şi minute. Să se determine care va fi ora peste x ore şi y minute. ==Date de intrare== Programul citește de la tastatură numerele h1 m1 x y. ==Date de ieșire== Programul afișează pe ecran numerele h2 m2, separate printr-un spaţiu, cu semnificaţia din enunţ. ==Restricții și precizări== *0 ≤ h1, h2 ≤ 23; *0 ≤ m1, m2, y ≤ 59; *0 ≤ x ≤ 10000; ==Exemplul 1== ;Intrare :7 11 5 34 ;Ieșire :Datele de intrare corespund restricțiilor impuse. :12 45 ==Exemplul 2== ;Intrare :-1 -1 -1 -1 ;Ieșire :Datele de intrare nu corespund restricțiilor impuse. ==Rezolvare== <syntaxhighlight lang="python" line="1"> #0461 - Timp1 def determina_ora_urmatoare(h1, m1, x, y): # adaugam minutele minute = m1 + y # adaugam orele si minutele ramase ore = h1 + x + minute // 60 minute = minute % 60 # daca am depasit 24 de ore, revenim la 0 si continuam if ore >= 24: ore = ore % 24 return ore, minute if __name__ == '__main__': h1 = int(input("Introduceți ora curentă (ora): ")) m1 = int(input("Introduceți ora curentă (minute): ")) x = int(input("Introduceți numărul de ore peste care să calculăm ora următoare: ")) y = int(input("Introduceți numarul de minute peste care să calculam ora urmatoare: ")) if h1 >= 0 and h1 <= 23 and m1 >= 0 and m1 <= 59 and x >= 0 and x <= 10000: h2, m2 = determina_ora_urmatoare(h1, m1, x, y) print("Datele de intrare corespund restricțiilor impuse.") print(f"Ora urmatoare este {h2}:{m2}") else: print("Datele de intrare nu corespund restricțiilor 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