Java/Story (1) 썸네일형 리스트형 Java - 기본 문법 Java 기본 문법 정리입니다. 1. Tutorial 1.0 public class /** * App */ public class App { public static void main(String[] args) { // code space } } 1.1 print System.out.println("Hello World"); System.out.print("this is on "); System.out.println("same line."); System.out.println("He said \"I\'m not ok. using Backslash (\\) \""); // Operators String x1 = "10"; int x2 = 20; System.out.println(x1 + x2); // St.. 이전 1 다음