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
0173 - Medie1
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 == Să se scrie un program care citeşte de la tastatură cele trei note ale unui elev și determină media lor. == Date de intrare == Programul citește de la tastatură trei numere naturale '''nota1''', '''nota2''', '''nota3''', reprezentând notele. == Date de ieșire == Pe ecran se va afișa mesajul: "Datele de intrare corespund restricțiilor impuse". În următorul rând se va afișeaza pe ecran media calculată, cu exact două zecimale. În cazul în care datele introduse de la tastatură nu îndeplinesc cerințele enunțate, pe ecran se va afișa mesajul "Nu au fost respectate cerintele impuse". == Restricții și precizări == * 0 < '''nota1''', '''nota2''', '''nota3''' ⩽ 10 * media se va afișa cu exact două zecimale, fără rotunjire == Exemplu 1 == ; Intrare : 9 : 9 : 7 ; Ieșire : Datele de intrare corespund restricțiilor impuse : 8.33 <br> == Exemplu 2 == ; Intrare : 9 : 0 : 7 ; Ieșire : Nu au fost respectate cerintele impuse <br> == Rezolvare == <syntaxhighlight lang="python" line> # 0173 - medie1 # Importam functia mean din modulul statistics from statistics import mean def validare(nota1, nota2, nota3): # Daca datele sunt invalide v-om face raise la eroarea ValueError conditii = ( nota1 > 0, nota2 > 0, nota3 > 0, nota1 <= 10, nota2 <= 10, nota3 <= 10 ) if not all(conditii): raise ValueError def media_aritmetica(nota1, nota2, nota3): # Folosind functia mean putem afla media aritmetica # Cu ajutorul lui ":.2f" putem afisa doar doua zecimale print(f"{mean([nota1, nota2, nota3]):.2f}") if __name__ == '__main__': # Citim de la tastatura numerele cerute nota1 = int(input()) nota2 = int(input()) nota3 = int(input()) # Verificam daca datele introduse sunt valide # daca nu afisam mesajul corespunsador try: validare(nota1, nota2, nota3) except ValueError: print("Nu au fost respectate cerintele impuse") else: print("Datele de intrare corespund restricțiilor impuse") media_aritmetica(nota1, nota2, nota3) </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