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
1287 - CifreGen
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 = Se dau două cifre <code>a b</code> și un număr <code>n</code>. Să se genereze toate numerele cu exact <code>n</code> cifre cuprinse între <code>a</code> și <code>b</code>. = Date de intrare = Programul citește de la tastatură numerele <code>a b n</code>. = Date de ieșire = Programul va afișa pe ecran numerele generate, câte unul pe linie, în ordine crescătoare. În cazul în care restricțiile nu sunt îndeplinite, se va afișa mesajul "Nu corespunde restricțiilor". = Restricții și precizări = * <code>1 ≤ n ≤ 8</code> * <code>0 < a < b < 10</code> = Exemplul 1 = Intrare 3 5 3 Ieșire 333 334 335 343 344 345 353 354 355 433 434 435 443 444 445 453 454 455 533 534 535 543 544 545 553 554 555 = Exemplul 2 = Intrare 5 3 10 consola "Nu corespunde restricțiilor". == Rezolvare == <syntaxhighlight lang="python3" line="1"> def validate_restrictions(a, b, n): if 1 <= n <= 8 and 0 < a < b < 10: return True else: print("Nu corespunde restricțiilor") return False # Citirea datelor de intrare a = int(input("Introduceți a: ")) b = int(input("Introduceți b: ")) n = int(input("Introduceți n: ")) # Validarea restricțiilor if validate_restrictions(a, b, n): # Generarea și afișarea numerelor def generate_numbers(current_number, remaining_digits): if remaining_digits == 0: print(current_number) return for digit in range(a, b+1): generate_numbers(current_number * 10 + digit, remaining_digits - 1) for starting_digit in range(a, b+1): generate_numbers(starting_digit, n - 1) </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