Raise Numbers to Power 4/5 Quickly w/C Program

  • Thread starter Thread starter Madou
  • Start date Start date
  • Tags Tags
    Power
AI Thread Summary
To raise a dozen numbers to the power of 4/5 quickly, using a C program is a viable option for those familiar with coding. A simple C program can be written to loop through the numbers and apply the power function. Alternatively, for those who prefer not to code, using Excel is an efficient solution, where the formula =A1^0.8 can be applied to achieve the same result. Online calculators for this specific operation are not readily available, making programming or spreadsheet software the best choices. Overall, both C programming and Excel provide quick methods for raising numbers to the power of 4/5.
Madou
Messages
42
Reaction score
0
raise to power (4/5) !

i need to raise a dozen of numbers to the power 4/5 . i can use any online calculator but i didn't find any yet... or i can write a simple C program. but i don't know how. (i can write simple C programs). any ideas? or how would you do it on my place?
and i need to do it fast ;)
 
Physics news on Phys.org


If it's a lot of numbers, I would do this in Excel.

Use a formula like
=A1^0.8
for example.
 


thank you ;)
 
Back
Top