본문으로 바로가기

이전까지 했던 책의 예제들 업로드합니다. 

감사합니다.

package chapter2;

public class DoubleEx1 {

	public static void main(String[] args) {
		double dnum = 3.14;
		float fnum = 3.14F;
		
		System.out.println(dnum);
		System.out.println(fnum);

	}

}

'JAVA 프로그래밍 > Do it! 자바 프로그래밍 입문' 카테고리의 다른 글

chapter2/TypeInference.java  (0) 2021.05.11
chapter2/BooleanEx.java  (0) 2021.05.11
chpater2/CharacterEx3  (0) 2021.05.11
chpater2/CharacterEx2.java  (0) 2021.05.11
chapter2/CharacterEx1.java  (0) 2021.05.11