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
3060 - Melc
(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="1" start="1"> def validare(v, d): """ Verifică dacă numărul v este de tip float și dacă numărul d este între 0 și 1.000.000.000. Args: v (float): numărul v de verificat d (int): numărul d de verificat Returns: bool: True dacă ambele condiții sunt îndeplinite, False în caz contrar """ if not isinstance(v, float): # dacă v nu este de tip float, returnează False return False if not (0 < d < 1000000000): # dacă d nu este între 0 și 1.000.000.000, returnează False return False return True def timp_parcurgere_distanta(v, d): """ Calculează timpul necesar pentru a parcurge o distanță dată la o anumită viteză. Args: v (float): viteza melcului (exprimată în km/h) d (int): distanța pe care trebuie să o parcurgă melcul (exprimată în metri) Returns: None: afișează timpul necesar pentru a parcurge distanța, exprimat în minute """ v = v * 1000 / 60 # convertește km/h în m/s T = 1.0 * d / v # calculează timpul necesar pentru a parcurge distanța t = int(T) # transformă timpul în minute întregi if T > t: # dacă există fracții de minut, adaugă 1 minut la timp t += 1 print(t) # afișează timpul necesar pentru a parcurge distanța, exprimat în minute if __name__ == "__main__": # Primește input-ul de la utilizator v = float(input("Introduceti viteza (km/h): ")) d = int(input("Introduceti distanta (m): ")) # Verifică dacă input-ul este valid și afișează rezultatul if validare(v, d): print("Datele de intrare corespund restricțiilor impuse.") timp_parcurgere_distanta(v, d) 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