변수의 정의
public class variable { public static void main(String[] args) { int a = 1; System.out.println(a); double b = 1.1; // real number => double System.out.println(b); String c = "Hellow world"; System.out.println(c); } } 변수 : 데이터에 붙이는 이름/ 그 값이 변할 수 있는 문자 natural(자연수): 1,2,3,4.... ← Number → integer (정수): ...-3,-2,-1,0,1,2,3.... ↓ real number(실수): ...-0.3, 0.2, 0.1 , 0, 1.0, 2.0, 3.0 *JAVA의 경우 변수를 만들..