ال java.lang.Math.sqrt() يستخدم لإرجاع الجذر التربيعي للرقم.
بناء الجملة
public static double sqrt(double x)
معامل
x= a value
يعود
This method returns the square root of x.
- إذا كانت الوسيطة قيمة مزدوجة موجبة، فستُرجع هذه الطريقة الجذر التربيعي لقيمة معينة.
- إذا كانت الحجة نان أو أقل من الصفر، ستعود هذه الطريقة نان .
- إذا كانت الحجة إيجابية ما لا نهاية ، ستعود هذه الطريقة إيجابية ما لا نهاية .
- إذا كانت الحجة إيجابية أو سلبية صفر ، ستعيد هذه الطريقة النتيجة بالشكل صفر بنفس الإشارة.
مثال 1
public class SqrtExample1 { public static void main(String[] args) { double x = 81.0; // Input positive value, Output square root of x System.out.println(Math.sqrt(x)); } }اختبره الآن
انتاج:
9.0
مثال 2
public class SqrtExample2 { public static void main(String[] args) { double x = -81.78; // Input negative value, Output NaN System.out.println(Math.sqrt(x)); } }اختبره الآن
انتاج:
NaN
مثال 3
public class SqrtExample3 { public static void main(String[] args) { double x = 0.0/0; // Input NaN, Output NaN System.out.println(Math.sqrt(x)); } }اختبره الآن
انتاج:
NaN
مثال 4
public class SqrtExample4 { public static void main(String[] args) { double x = 1.0/0; // Input positive infinity, Output positive infinity System.out.println(Math.sqrt(x)); } }اختبره الآن
انتاج:
Infinity
مثال 5
public class SqrtExample5 { public static void main(String[] args) { double x = 0.0; // Input positive Zero, Output positive zero System.out.println(Math.cbrt(x)); } }اختبره الآن
انتاج:
0.0