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
3973 - Logaritm
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ţa == Dându-se un număr real '''x''', să se scrie un program care calculează '''ln(x)''' cu '''6''' zecimale exacte. == Date de intrare == Programul citește de la tastatură numărul real '''x'''. == Date de ieșire == Programul va afișa pe ecran rezultatul cu '''6''' zecimale exacte. == Restricţii şi precizări == * 1 ⩽ x ⩽ 2.000.000.000. * '''x''' va avea cel mult '''6''' zecimale. * Nu se vor folosi funcțiile logaritmice ale limbajului C++ == Exemplu 1== ; Intrare 5.12 ; Ieșire Datele de intrare corespund restrictiilor impuse 1.633154 == Exemplu 2== ; Intrare -1 ; Ieșire Datele de intrare nu corespund restrictiilor impuse == Rezolvare == <syntaxhighlight lang="python" line> import math def ln(x): # Precizia pe care o dorim epsilon = 1e-10 # Inițializăm limitele intervalului pentru metoda bisecției low = 0 high = x if x > 1 else 1 # Aplicăm metoda bisecției while high - low > epsilon: mid = (low + high) / 2 if math.exp(mid) < x: low = mid else: high = mid # Returnăm rezultatul cu 6 zecimale exacte return round((low + high) / 2, 6) def validare(x): if not 1 <= x <= 2_000_000_000: return False, "Datele de intrare nu corespund restrictiilor impuse" return True, "Datele de intrare corespund restrictiilor impuse" def main(): print("Introduceți numărul real x:") x = float(input()) valid, message = validare(x) print(message) if not valid: return print("ln(x) calculat cu 6 zecimale exacte este:") print(ln(x)) 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