형변환1 자바 형변환 type int double 나눗셈 이번글에서는 기초적인 형변환에 대해서 알아보도록 하겠습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class TypeConversion { public static void main(String[] args) { int i;//int형 변수 i 선언 double f;//double형 변수 f선언 f=5/4;// 5 / 4 를 double형 변수 f에 저장 System.out.println(f);//1.0이 출력된다. f= (double)5/4;//double 형 변수 5.0을 정수 4로 나눠주면 실수 1.25가 f에 저장된다. System.out.println(f);//1.25가 출력된다. f=5/(double)4; System.out.prin.. 2017. 9. 22. 이전 1 다음