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
0945 - Baze
(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 == === Rezolvare ver. 1=== <syntaxhighlight lang="python" line="1" start="1"> def validare(n, b, c): # Verifică dacă n conține doar cifre valide pentru baza b și dacă n este între 0 și 999999999 în baza 10 # Verifică de asemenea dacă b și c sunt între 2 și 10 return all(digit.isdigit() and int(digit) < int(b) for digit in n) and 0 <= int(n, int(b)) <= 999999999 and 2 <= int(b) <= 10 and 2 <= int(c) <= 10 def baze(n, b, c): n_baza_10 = int(n, b) # Converteste numarul n din baza b in baza 10 n_baza_c = format(n_baza_10, '0' + str(len(n)) + 'd') # Converteste numarul din baza 10 in baza c si completeaza cu zerouri la stanga daca este necesar base_c_digits = "0123456789abcdefghijklmnopqrstuvwxyz"[:c] # Defineste caracterele valide pentru baza c base_c_num = "" remainder = n_baza_10 while remainder > 0: digit = base_c_digits[remainder % c] # Obtine ultima cifra in baza c base_c_num = digit + base_c_num # Adauga cifra la stanga numarului in baza c remainder //= c # Actualizeaza catul pentru urmatoarea iteratie print("Numărul {} în baza {} este {}".format(n, c, int(base_c_num))) # Afiseaza rezultatul final if __name__ == '__main__': n = input("Introdu numărul n: ") b = input("Introdu baza b: ") c = input("Introdu baza c: ") if validare(n, b, c): b, c = int(b), int(c) print("Datele introduse corespund restricțiilor impuse.") baze(n, b, c) # Apeleaza functia pentru a afisa rezultatul final else: print("Datele introduse 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