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
0333 - Triunghi1
(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 ver. 1=== <syntaxhighlight lang="python" line="1" start="1"> def validare(a, b, c): # Verifică dacă lungimile laturilor sunt cuprinse între 0 și 100 if 0 <= a <= 100 and 0 <= b <= 100 and 0 <= c <= 100: return True return False def triunghi(a, b, c): if a <= 0 or b <= 0 or c <= 0 or a >= b + c or b >= a + c or c >= a + b: # Dacă laturile nu pot forma un triunghi, afișează un mesaj corespunzător print("nu este triunghi") elif a * a + b * b == c * c or b * b + c * c == a * a or c * c + a * a == b * b: # Dacă triunghiul este dreptunghic, afișează un mesaj corespunzător print("triunghi dreptunghic") elif a * a + b * b > c * c and b * b + c * c > a * a and c * c + a * a > b * b: # Dacă triunghiul este ascutitunghic, afișează un mesaj corespunzător print("triunghi ascutitunghic") else: # Dacă triunghiul este obtuzunghic, afișează un mesaj corespunzător print("triunghi obtuzunghic") if __name__ == "__main__": # Citeste lungimile laturilor triunghiului de la tastatură a, b, c = map(float, input().split()) if validare(a, b, c): # Dacă laturile sunt valide, afișează un mesaj corespunzător și calculează tipul triunghiului print("Datele de intrare corespund restricțiilor impuse.") triunghi(a, b, c) else: # Dacă laturile nu sunt valide, afișează un mesaj corespunzător 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