in diesem Video zeige ich, wie es gelingt
mit fast jeder Programmiersprache Quadratwurzeln
zu berechnen.
Python Quellcode:
def sqrt(a):
A = float(a)
X = A
t = 2
for i in range(500):
X = (X + (A / X )) / t
return(X)
ACHTUNG: Das Verfahren funktioniert zwar in anderen Programmiersprachen
auch, dennoch funktioniert dieser Quellcode nur in Python und muss für andere
Sprachen wie zum Beispiel C++ oder Java umgeformt werden.
Unsere Webseite:
http://www.alpha77.net
Unsere Kontaktdaten:
Twitter: https://twitter.com/Alpha77_NET
Discord: https://discord.gg/wAAHTtT
▶️ DTube
▶️ IPFS
ACHTUNG: Das Verfahren funktioniert zwar in anderen Programmiersprachen
auch, dennoch funktioniert dieser Quellcode nur in Python und muss für andere
Sprachen wie zum Beispiel C++ oder Java umgeformt werden.
Ich wünsche viel Spaß beim ausprobieren ;-)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @a77! You received a personal award!
Click here to view your Board
Do not miss the last post from @steemitboard:
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @a77! You received a personal award!
You can view your badges on your Steem Board and compare to others on the Steem Ranking
Vote for @Steemitboard as a witness to get one more award and increased upvotes!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit