const int num = 10;
정수형 상수 num
을 선언하는 동시에 10
으로 초기화한다.
상수(constant)의 뜻을 나 같은 경우 "read-only"(읽기… Read more “C/C++에서 키워드 const의 의미 정리”
const int num = 10;
정수형 상수 num
을 선언하는 동시에 10
으로 초기화한다.
상수(constant)의 뜻을 나 같은 경우 "read-only"(읽기… Read more “C/C++에서 키워드 const의 의미 정리”
‘The Java Tutorial: A Short Course on the Basics’ 읽기
Java 패키지(packages) 배우기
… Read more “자바 스터디 노트 #3”This study note is from Tutorialspoint(https://www.tutorialspoint.com/ruby/… Read more “루비 프로그래밍 언어 스터디 노트 #1”
printf
in CString.format("%.6f", weight);
// Integer types
byte, 1 byte
short, 2 bytes
int, 4 bytes
long, 8 bytes
// Floating
… Read more “자바 스터디 노트 #1”