본문 바로가기
JAVA

자바 long 형 계산과 NumberFormat (,) 붙이기

by 정윤재 2009. 6. 9.

package VRS;import java.text.NumberFormat;public class intTest { /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  //double //x  = 199458111+58138207+14980195+2789041+722540377+6260429+1823038+1221657730+1009;

  
  //long x   = Long.parseLong("199458111")+Long.parseLong("199458111");
  
  long x   = 199458111;
  x    += 58138207;
  x    += 14980195;
  x    += 2789041;
  x    += 722540377;
  x    += 6260429;
  x    += 1823038;
  x    += 1221657730;
  x    += 1009;
  
  NumberFormat nf  =  NumberFormat.getInstance();
  nf.setMaximumFractionDigits(3);
  nf.format(x);
  System.out.println(nf.format(x));
  
 }
}


댓글