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
0949 - Calendar 3
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!
== Cerinta == Dându-se o dată calendaristică și un număr nr de zile, să se determine care este data aflată la o diferență de nr de zile. == Date de intrare == Programul citește de la tastatură 3 numere naturale '''Z, L și A''', reprezentând ziua, luna si anul curent, iar pe al doilea rând numărul nr de zile. == Date de iesire == Programul va afișa pe ecran 3 numere naturale '''ZI, LUNA, AN''' reprezentând data cerută. == Restrictii si precizari == *-100.000 ⩽ nr ⩽ 100000 *Datele calendaristice din fișierul de intrare sunt între 1 ianuarie 1900 și 31 decembrie 2100 *Nu se vor fi date calendaristice invalide precum 29 februarie 2015 sau 31 noiembrie 1980 *Dacă nr este negativ, data cerută se afla înaintea cele curente. == Exemplul 1 == ;Intrare :6 1 2015 :15 ;Iesire :Datele introduse corespund restrictiilor impuse :21 1 2015 == Exemplul 2 == ;Intrare :29 2 2015 :25 ;Iesire :Datele introduse nu corespund restrictiilor impuse == Rezolvare == <syntaxhighlight lang="python3" line="1"> def adauga_zile(Z, L, A, nr_zile): # Functie pentru a adauga un numar de zile la o data calendaristica zile_luna = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] while nr_zile > 0: zile_luna[2] = 29 if (A % 4 == 0 and A % 100 != 0) or (A % 400 == 0) else 28 Z += 1 if Z > zile_luna[L]: Z = 1 L += 1 if L > 12: L = 1 A += 1 nr_zile -= 1 return Z, L, A def verifica_restrictii(Z, L, A, nr_zile): if ( 1 <= Z <= 31 and 1 <= L <= 12 and 1900 <= A <= 2100 and -100000 <= nr_zile <= 100000 ): return True else: return False # Citire date de intrare Z, L, A = map(int, input().split()) nr_zile = int(input()) # Verificare restricții if verifica_restrictii(Z, L, A, nr_zile): # Rezolvare și afișare rezultat zi_noua, luna_noua, an_nou = adauga_zile(Z, L, A, nr_zile) print("Datele introduse corespund restrictiilor impuse") print(f"{zi_noua} {luna_noua} {an_nou}") else: print("Date de intrare nevalide!") </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