Roots and powers playing nicely together...
#17
(09-30-2022, 04:51 AM)PhilOfPerth Wrote: Excuse me if I'm wrong, but should that be x^(1/100) ?  I think powers are resolved before / without parenthesis.

And back to the roots:

Code: (Select All)
'Beispiel x ^ (a/b) - 30. Sept. 2022

Option _Explicit

Dim As Double a, b, x, potenz

Input "Basis x: ", x
Input "a      : ", a
Input "b      : ", b
Print

potenz = x ^ (a / b)
Print Using "Potenzwert = : #####.####"; potenz

Print
Print "Und return:"
x = potenz ^ (b / a)
Print Using "Basis x: ###.####"; x

End

[Image: Potenz-Klammern-return2022-09-30.jpg]
Reply


Messages In This Thread
RE: Roots and powers playing nicely together... - by Kernelpanic - 09-30-2022, 06:00 PM



Users browsing this thread: 14 Guest(s)