logo

Метод Јава Матх.скрт().

Тхе јава.ланг.Матх.скрт() се користи за враћање квадратног корена броја.

Синтакса

 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