How to program 4√3 in C# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to program 4√3 in C#

Sqrt nthroot

10th May 2020, 11:01 AM
Narendra Medamarthi
Narendra Medamarthi - avatar
2 Answers
+ 2
Examples: Input : A = 81 N = 4 Output : 3 3^4 = 81 ... C++ program to calculate Nth root of a number.
10th May 2020, 1:05 PM
SITHU Nyein
SITHU Nyein - avatar
0
Math.Pow(3, 1.0 / 4) if you mean 4th root of 3.
10th May 2020, 11:06 AM
Manu_1-9-8-5
Manu_1-9-8-5 - avatar