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
0450 - Mini Calc
(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== ===Rezolvare ver. 1=== <syntaxhighlight lang="python" line="1" start="1"> def validare(a, b, c): if 0 <= a < 32676 and 0 < b < 32676 and a >= b and c in [1, 2, 3, 4, 5]: return True return False def operatie(a, b, c): if c == 1: # Suma primelor doua numere rezultat = a + b elif c == 2: # Diferenta dintre primul si al doilea numar rezultat = a - b elif c == 3: # Produsul primelor doua numere rezultat = a * b elif c == 4: # Catul impartirii dintre primul si al doilea numar rezultat = a // b elif c == 5: # Restul impartirii dintre primul si al doilea numar rezultat = a % b return rezultat if __name__ == "__main__": # Citim cele trei numere de la tastatura a = int(input("Introdu primul numar: ")) b = int(input("Introdu al doilea numar: ")) c = int(input("Introdu cifra operatiei dorite (1 pentru suma, 2 pentru diferenta, 3 pentru produs, 4 pentru catul impartirii, 5 pentru restul impartirii): ")) if validare(a, b, c): # Apelam functia de validare print("Datele de intrare corespund restricțiilor impuse.") # In caz afirmativ afisam mesajul pozitiv si apelam functia operatie print(operatie(a, b, c)) else: # In caz contrar afisam mesajul corespunzator 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