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
3159 - numere124
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 citesc un număr natural <code>n</code> având cifrele diferite două câte două și o cifră <code>c</code>. Afișați în ordine crescătoare numerele formate din <code>c</code> cifre distincte care se pot obține din cifrele lui <code>n</code>. = Date de intrare = Programul citește de la tastatură numerele <code>n</code> și <code>c</code>. = Date de ieșire = Programul va afișa pe ecran numerele cerute, câte unul pe fiecare rând. Î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 ≤ 1.000.000.000</code>, <code>1 < c < 9</code> * <code>n</code> are cifrele distincte * <code>c</code> este mai mic decât numărul de cifre ale lui <code>n</code> = Exemplu 1 = Intrare 2576 2 Ieșire 25 26 27 52 56 57 62 65 67 72 75 76 = Exemplul 2 = Intrare 2576 2 consola "Nu corespunde restricțiilor" == Rezolvare == <syntaxhighlight lang="python3" line="1"> from itertools import permutations def verifica_restrictii(n, c): # Verifică restricțiile if not (1 <= n <= 1000000000 and 1 < c < 9): return False # Verifică dacă n are cifre distincte cifre = set(str(n)) if len(cifre) != len(str(n)): return False # Verifică dacă c este mai mic decât numărul de cifre ale lui n if c >= len(str(n)): return False return True def generare_numere(n, c): # Verifică restricțiile if not verifica_restrictii(n, c): print("Nu corespunde restricțiilor") return # Restul codului pentru generarea și afișarea numerelor cifre = list(str(n)) permutari = list(permutations(cifre, c)) for perm in sorted(permutari): numar = int("".join(perm)) print(numar) # Citeste input-ul de la tastatură input_data = input("Introduceti n si c separate prin spatiu: ") n, c = map(int, input_data.split()) # Apelul funcției generare_numere(n, c) </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