본문 바로가기
Java/기초

[자바 기초] 5. 숫자형 데이터

by bigpicture 2020. 8. 24.
반응형

숫자형데이터는 그냥 숫자를 입력하면 출력됩니다.

 

public class ex {

public static void main(String[] arg)

{

System.out.println(123);

}

}

 

출력결과

 

123

 

반응형

댓글