Ruby Math sqrt()函数

Ruby Math sqrt()函数

sqrt() 是Ruby中的一个内置函数,用于返回一个给定值的平方根。

语法 :Math.sqrt(value)

参数 :该函数接受一个必须的 参数值 ,其平方根将被返回。

返回值 :它返回该值的平方根。

例子 1 :

#Ruby program for sqrt() function
  
#Assigning values
val1 = 4 val2 = 9 val3 = 64 val4 = 100
  
#Prints the sqrt() value
                                   puts Math.sqrt(val1)
                                       puts Math.sqrt(val2)
                                           puts Math.sqrt(val3)
                                               puts Math.sqrt(val4)

输出:

2.0
3.0
8.0
10.0

例2 :

#Ruby program for sqrt() function
  
#Assigning values
val1 = 40 val2 = 19 val3 = 164 val4 = 1200
  
#Prints the sqrt() value
                                      puts Math.sqrt(val1)
                                          puts Math.sqrt(val2)
                                              puts Math.sqrt(val3)
                                                  puts Math.sqrt(val4)

输出:

6.324555320336759
4.358898943540674
12.806248474865697
34.64101615137755

参考资料 : https://devdocs.io/ruby~2.5/math#method-c-sqrt

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程