자바 추출 및 자바 반올림 방법

3295 단어 자바BlogJ#UP
import java.math.BigDecimal;
import java.text.DecimalFormat;

public class TestGetInt{
public static void main(String[] args){
double i=2, j=2.1, k=2.5, m=2.9;
System.out.println("      :Math.floor(2)=" + (int)Math.floor(i));
System.out.println("      :Math.floor(2.1)=" + (int)Math.floor(j));
System.out.println("      :Math.floor(2.5)=" + (int)Math.floor(k));
System.out.println("      :Math.floor(2.9)=" + (int)Math.floor(m));



System.out.println("      :(2)=" + new BigDecimal("2").setScale(0, BigDecimal.ROUND_HALF_UP));
System.out.println("      :(2.1)=" + new BigDecimal("2.1").setScale(0, BigDecimal.ROUND_HALF_UP));
System.out.println("      :(2.5)=" + new BigDecimal("2.5").setScale(0, BigDecimal.ROUND_HALF_UP));
System.out.println("      :(2.9)=" + new BigDecimal("2.9").setScale(0, BigDecimal.ROUND_HALF_UP));

   System.out.println("  :Math.ceil(2)=" + (int)Math.ceil(i));
System.out.println("  :Math.ceil(2.1)=" + (int)Math.ceil(j));
System.out.println("  :Math.ceil(2.5)=" + (int)Math.ceil(k));
System.out.println("  :Math.ceil(2.9)=" + (int)Math.ceil(m));

   System.out.println("      :Math.floor(-2)=" + (int)Math.floor(-i));
System.out.println("      :Math.floor(-2.1)=" + (int)Math.floor(-j));
System.out.println("      :Math.floor(-2.5)=" + (int)Math.floor(-k));
System.out.println("      :Math.floor(-2.9)=" + (int)Math.floor(-m));

System.out.println("      :(-2)=" + new BigDecimal("-2").setScale(0, BigDecimal.ROUND_HALF_UP));
System.out.println("      :(-2.1)=" + new BigDecimal("-2.1").setScale(0, BigDecimal.ROUND_HALF_UP));
System.out.println("      :(-2.5)=" + new BigDecimal("-2.5").setScale(0, BigDecimal.ROUND_HALF_UP));
System.out.println("      :(-2.9)=" + new BigDecimal("-2.9").setScale(0, BigDecimal.ROUND_HALF_UP));

   System.out.println("  :Math.ceil(-2)=" + (int)Math.ceil(-i));
System.out.println("  :Math.ceil(-2.1)=" + (int)Math.ceil(-j));
System.out.println("  :Math.ceil(-2.5)=" + (int)Math.ceil(-k));
System.out.println("  :Math.ceil(-2.9)=" + (int)Math.ceil(-m));
}
}


 
//_____________________________
작은 것 을 버리다정돈:Math.floor(2)=2 작은 것 을 버 릴 까?정돈:Math.floor(2.1)=2 작은 것 을 버 릴 까?정돈:Math.floor(2.5)=2 작은 것 을 버 릴 까?취 정:Math.floor(2.9)=2 반올림 취 정:(2)=2 반올림 취 정:(2.1)=2 반올림 취 정:(2.5)=3 반올림 취 정:(2.9)=3?전체:Math.ceil(2)=2?전체:Math.ceil(2.1)=3?전체:Math.ceil(2.5)=3?정:Math.ceil(2.9)=3 버 리 고 작 게?정돈:Math.floor(-2)=-2 작은 것 을 버 릴 까?정돈:Math.floor(-2.1)=-3 작은 것 을 버 릴 까?정돈:Math.floor(-2.5)=-3 작은 것 을 버 릴 까?취 정:Math.floor(-2.9)=-3 반올림 취 정:(-2)=-2 반올림 취 정:(-2.1)=-2 반올림 취 정:(-2.5)=-3 반올림 취 정:(-2.9)=-3?전체:Math.ceil(-2)=-2?전체:Math.ceil(-2.1)=-2?정:Math.ceil(-2.5)=-2?전체:Math.ceil(-2.9)=-2
 
http://blog.sina.com.cn/s/blog_6252a1db0100ewet.html

좋은 웹페이지 즐겨찾기