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
2842 - Triplete 1
(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 == <syntaxhighlight lang="python3" line="1"> def is_valid_interval(n): """ Verifică dacă n se află în intervalul [2, 10000]. :param n: Valoarea naturală de verificat. :return: True dacă n este în interval, False în caz contrar. """ return 2 <= n <= 10000 def triplete(n): """ Afișează toate tripletele de numere naturale (x, y, z) cu proprietatea că x < y < z și x * y + y * z = n. :param n: Valoarea naturală din intervalul [2, 10000]. """ # Verificăm dacă n se află în intervalul specificat if is_valid_interval(n): # Iterăm prin posibilele valori pentru x, y, z for x in range(0, n): for y in range(x + 1, n): for z in range(y + 1, n+1): # Verificăm condiția x < y < z if x < y < z and x * y + y * z == n: # Afișăm tripletul pe ecran print(f'({x},{y},{z})') else: print("Nu sunt indeplinite conditiile") # Exemplu de utilizare: # Pentru n = 8, subprogramul va afișa toate tripletele care satisfac condițiile date. triplete(int(input())) </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