본문 바로가기

Programming

Java Math class - squareRoot, power num example / 자바 - 루트, 제곱 값 예제

 Java Math class - squareRoot, power num example / 자바 - 루트, 제곱 값 예제




squareRoot - 제곱근 (루트 씌운 값)


power - 거듭제곱



 두개 다 Math 클래스에서 바로 호출해서 사용 가능하다.


Both can be used in Math class in Java



e.g.


Math.sqrt(value);


Math.pow(value, intNum);





Code.. lemme see code.....


코드.. 코드를 보자.........




public static void main(String[] args) {


int testNum1 = 16;

float testNum2 = 625f;

double testNum3 = 169;

System.out.println("SquareRoot example below");

System.out.println(Math.sqrt(testNum1));

System.out.println(Math.sqrt(testNum2));

System.out.println(Math.sqrt(testNum3));

System.out.println("");

System.out.println("Power example below");

System.out.println(Math.pow(testNum1, 4));

System.out.println(Math.pow(testNum2, 3));

System.out.println(Math.pow(testNum3, 2));

}




Result.. in console


SquareRoot example below

4.0

25.0

13.0


Power example below

65536.0

2.44140625E8        //E8 on the end means x10^8  // 끝의 E8 은 자릿수를 표기한 것 x10^8

28561.0







Something else...





2018/11/07 - [Programming/Matlab] - Save matrix data to excel in matlab (맷랩 매트릭스 데이터 엑셀에 저장하는 방법)



2018/11/02 - [Programming/Java] - Apache POI library excel file, Mat in OpenCV to Excel file / 아파치 POI 라이브러리 엑셀파일 쓰기 OpenCV Mat 에서 엑셀파일 만들기 (java, c++)

2018/11/02 - [Programming/Java] - Apache POI library excel file read to make Mat in openCV / 아파치 POI 라이브러리 엑셀파일 읽기 OpenCV Mat 만들기 (java, c++)



2018/10/31 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #23 boxBlur. Algorithm, 알고리즘, Codefights, CodeSignal, regx, 정규표현식, 코드파이트, 코드시그널, c++ java c# scalar

2018/10/29 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #22 avoidObstacles. Algorithm, 알고리즘, Codefights, CodeSignal, regx, 정규표현식, 코드파이트, 코드시그널, c++ java c# scalar

2018/10/28 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #21 isIPv4Address. Algorithm, 알고리즘, Codefights, CodeSignal, regx, 정규표현식, 코드파이트, 코드시그널, c++ java c# scalar

2018/10/28 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #20 arrayMaximalAdjacentDifference. Algorithm, Codefights, CodeSignal, 코드파이트, 코드시그널, c++ java c# scalar

2018/10/27 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #19 AreEquallyStrong. Algorithm, Codefights, CodeSignal, 코드파이트, 코드시그널, c++ java c# scalar



2018/10/26 - [Programming/Java] - Difference between String, StringBuilder, and StringBuffer Class 차이점 / Java c++ 문자열, example 예제