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
1336 - Domino Dots
(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 == <syntaxhighlight lang="python" line> #1336 def get_max_dots(message): return int(input(message)) def calculate_total_sum(n): total_sum = 0 for i in range(n+1): for j in range(i+1): total_sum += i + j return total_sum def display_total_sum(total_sum): print(total_sum) def validate_input(n): """ Verifică dacă datele introduse sunt corecte. """ if n < 0: print( "Datele nu corespund restricțiilor impuse.") return False return True if __name__ == '__main__': n = get_max_dots("Introdu numarul maxim de puncte de pe un capat al unei piese de domino: ") if validate_input(n): print("Datele sunt corect") total_sum = calculate_total_sum(n) display_total_sum(total_sum) </syntaxhighlight> '''Explicatie cod:''' Acest cod defineste trei functii pentru a calcula suma totala a tuturor numerelor posibile de pe capetele tuturor pieselor de domino cu un numar maxim de puncte specificat. Functia get_max_dots(message) primeste un mesaj si cere utilizatorului sa introduca un numar intreg folosind functia input(). Acest numar reprezinta numarul maxim de puncte de pe un capat al unei piese de domino. Functia converteste inputul primit de la utilizator la un numar intreg si il returneaza. Functia calculate_total_sum(n) primeste ca parametru n - numarul maxim de puncte de pe un capat al unei piese de domino si initializeaza variabila total_sum cu valoarea 0. Apoi, prin intermediul doua bucle for, se itereaza prin toate combinatiile de numere ale capetelor pieselor de domino si se aduna suma lor la variabila total_sum. La final, functia returneaza valoarea total_sum. Functia display_total_sum(total_sum) primeste ca parametru total_sum - suma totala a tuturor numerelor posibile de pe capetele tuturor pieselor de domino cu numarul maxim de puncte specificat si o afiseaza utilizatorului folosind functia print(). In final, programul cere utilizatorului sa introduca numarul maxim de puncte de pe un capat al unei piese de domino prin apelul functiei get_max_dots(), calculeaza suma totala a tuturor numerelor posibile de pe capetele tuturor pieselor de domino cu acel numar maxim de puncte prin apelul functiei calc
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