How to add a square root and cube root function in a program without using Math.sqrt() and Math.cbrt() in java?

后端 未结 0 1008
被撕碎了的回忆
被撕碎了的回忆 2020-12-15 14:19
    public class root
    {
        public static void main(String[] args)
        {
           double a = 123.45; 
           double square_root = Math.sqrt(a); //          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题