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
3933 - Zero Unu
(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> def verifica_numar(numar): # Verifică dacă numărul îndeplinește condițiile cerute has_zero = False has_one = False while numar > 0: digit = numar % 10 if digit == 0: has_zero = True elif digit == 1: has_one = True else: # Dacă cifra curentă nu este 0 sau 1, nu mai e necesar să verificăm restul cifrelor break numar //= 10 return has_zero and has_one and numar == 0 def main(): # Citim numărul de la utilizator numar = int(input("Introduceți un număr natural: ")) # Verificăm dacă numărul este un număr natural și conține doar cifre if numar < 0 or not str(numar).isdigit(): print("Numărul introdus nu este valid.") else: if verifica_numar(numar): # Numărul îndeplinește condițiile cerute print("Numărul îndeplinește condițiile date.") else: # Numărul nu îndeplinește condițiile cerute print("Numărul nu îndeplinește condițiile date.") print("Datele au fost introduse corect.") if __name__ == "__main__": main() </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