RosettaCodeData/Task/Nth-root/ALGOL-60/nth-root-3.alg
2025-02-27 18:35:13 -05:00

5 lines
91 B
Text

real procedure nthroot(x, n);
value x, n; real x, n;
begin
nthroot := x ** (1/n);
end;