09-23-2022, 01:53 PM
I do not understand your problem. Why about the extensions of the binomial theorem? You can easily calculate the cube root with the now well-known formula. Or am I misunderstanding the question?
Code: (Select All)
Dim As Double n, x, rootx
Print
Input "Wurzelexponent: ", n
Input "Radikand : ", x
rootx = x ^ (1 / n)
Print Using "Kubikwurzel: ###.##########"; rootx