프로그래밍언어/Java
[JAVA] DecimalFormat 클래스 자바 소수자릿수 설정
표와 소스를 참고해서 이해하기! public class exmaple { static DecimalFormat df; public static void main(String[] args) { double x = 12345.67891; double y = 0.00012; df = new DecimalFormat("0"); System.out.println(df.format(x)); //12346 System.out.println(df.format(y)); //0 df = new DecimalFormat("0.0"); System.out.println(df.format(x)); //12345.7 System.out.println(df.format(y)); //0.0 df = new DecimalFormat(..
[JAVA] 도분초(DMS)를 위경도(DEGREE)로 바꾸기
public double DMStoDEG(double d, double m, double s){ return d + (m / 60.0) + (s / 3600.0); } public double DMStoDEG(int d, int m, int s){ return double(d) + (double(m) / 60.0) + (double(s) / 3600.0); }