Merge remote-tracking branch 'origin/main'

main
Jonas Wächter 2022-11-09 12:30:39 +01:00
commit c4bbedb3f5
1 changed files with 16 additions and 1 deletions

View File

@ -1,2 +1,17 @@
import math
def reziprok(x):
check = True
summe = 0
i = 1
while(check):
summe+= 1/(i*i)
i += 1
if(round(summe,6) == x):
check = False
print(f"Number of runs: {i}" )
print(f"π^2/6: {x}")
if __name__ == '__main__':
print("test")
x = (math.pi*math.pi)/6
reziprok(round(x,6))