JAVA1 - 8.
·
youtube.com|user|egoing2/JAVA1
Ex) 변수의 정의 public class Variable { public static void main(String[] args) { int a = 1; // Number -> integer 정수 ... -2, -1, 0, 1, 2, ... System.out.println(a); double b = 1.1; // real number -> double 실수 ...-2.0, -1.0, 0, 1.0, 2.0, ... System.out.println(b); String c = "你好世界"; System.out.println(c); } } Ex) 변수의 효용 public class Letter { public static void main(String[] args) { String name = "ro117..