/**
* 변수 작성법
* 1. 카멜 표기법을 사용한다.
* 2. 숫자를 먼저 사용하지 않는다.
* 3. 특수문자는 사용하지 않는다.
*/
public class IdenEx01 {
public static void main(String[] args) {
int user_money; //되긴 하지만 사용안함
int userMoney; //카멜 표기법(낙타 표기법)
//int abc#; 안됨
double abc$$;
int method;
//int 1stMoney; 안됨
}
}