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
1308 - Cifre Comune
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ță== Se citesc două numere naturale '''n m''' cu exact două cifre fiecare. Să se decidă dacă cele două numere au cifre comune. ==Date de intrare== Programul citește de la tastatură numerele '''n m'''. ==Date de ieșire== Dacă datele sunt introduse corect, pe ecran se va afișa: "Datele de intrare corespund restricțiilor impuse." și programul afișează pe ecran mesajul ”Există cifre comune.” dacă cele două numere au cifre comune, respectiv ”Nu există cifre comune.” în caz contrar. În caz contrar, se va afișa pe ecran: "Datele de intrare nu corespund restricțiilor impuse." ==Restricții de precizări== *10 ⩽ '''n, m''' ⩽ 99 ==Exemplul 1== ;Intrare :27 :62 ;Ieșire :Datele introduse corespund restricțiilor impuse. :Există cifre comune. ==Exemplul 2== ;Intrare :23 :68 ;Ieșire :Datele introduse corespund restricțiilor impuse. :Nu există cifre comune. ==Rezolvare== ===Rezolvare ver. 1=== <syntaxhighlight lang="python" line="1" start="1"> def validare(n, m): return n.isdigit() and 10 <= int(n) <= 99 and m.isdigit() and 10 <= int(m) <= 99 def cifreComune(n, m): #verificăm dacă 2 numere au cifre comune found = False for digit in n: #verificăm daca acestea au cifre comune if digit in m: found = True break #dacă au, atunci bucla se încheie if found: print("Există cifre comune.") #afișăm dacă există cifre comune else: print("Nu există cifre comune.") #afișăm dacă nu există cifre comune if __name__ == '__main__': n = input("Introduceți primul număr: ") m = input("Introduceți al doilea număr: ") if validare(n, m): print("Datele de intrare corespund restricțiilor impuse.") cifreComune(n, m) else: print("Datele de intrare 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