728x90
반응형

[2진수 문자열 s를 10진수로]
int i = Integer.parseInt(s, 2);

 

1. abs : 절대값 반환
  예)  double b = Math.abs(1972.98); --> 1972.98 반환
    int i = Math.abs(-197);       --> 197 반환

 

2. random : 난수를 반환한다.(0.0. ~ 1.0)
  예) double r = Math.random();
   int i = (int)(Math.random()*정수);

 

3. max : 두개의 인수중 큰 숫자를 구해준다.
  예) result = Math.max(-2, 2)  --> 2 반환

 

4. min : 두개의 인수중 작은 숫자를 구해준다.
  예) result = Math.min(-2, 2)  --> -2 반환

 

5. ceil : 인수보다 크거나 같은 정수를 반환
  예) result = Math.ceil(-30.54)   --> -30.0 반환
   result = Math.ceil(200.34)   --> 201.0 반환

 

6. floor : 인수보다 작거나 같은 정수를 반환
  예) result = Math.floor(19824.34)  --> 19824.0 반환
  예) result = Math.floor(2133.33)  --> 2133.0 반환
  예) result = Math.floor(-2133.33)  --> -2134.0 반환

 

7. round : 인수를 반올림하여 반환
  예) result = Math.round(-23.23) --> -23 반환
   result = Math.round(34.53)  --> 35 반환

 

8. rint : 인수와 가장 가까운 정수를 반환
  예) result = Math.rint(-34.3)   --> -34.0 반환
   result = Math.rint(24.3)    --> 24.0 반환

 

728x90
반응형

'Web Programming > java-jsp' 카테고리의 다른 글

svn 설치법 사용법  (0) 2013.10.25
SQL/다중행 비교연산자  (0) 2013.10.18
trim(), substring(), indexOf(char)  (0) 2013.09.25
POI 로 엑셀파일 읽어서 DB저장하기  (0) 2013.09.25
body onload event  (0) 2013.09.23

+ Recent posts