목록전체 글 (203)
gimmickbutreal
1 2 3 4 5 6 // Hello World!를 출력하시오. public class Main { public static void main(String[] args) { System.out.println("Hello World!"); } } Colored by Color Scripter cs tip ) - Java에서 클래스의 이름을 설정할 때 첫 글자를 대문자로 하는 것이 좋습니다. 이를 CamelCase(낙타체)라고 하며, 필자는 이러한 이유로 클래스의 이름을 Main이라고 지었습니다. - 백준에서 Java로 문제를 풀 때 메인클래스의 이름을 Main으로 하지 않으면 컴파일 에러가 납니다.
vscode는 Microsoft에서 개발한 소스 코드 편집기이며, Stackoverflow Developer Survey 2021 IDE 부문 선호도 1위를 차지한 전세계 개발자들에게 사랑받는 소스 코드 편집기입니다. 필자는 주로 c++ programming을 위해 해당 프로그램을 사용합니다. 다운로드 방법은 아래와 같습니다 1. 공식 홈페이지 방문 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Vis..
영어 독해에 앞서 구조를 알면 읽기가 더 수월해집니다. 영어문장에는 크게 3가지 구조가 있습니다. 1. Simple Sentence : a sentence that has only one clause. 하나의 절로만 이루어진 문장이며 "I study English."와 같은 문장을 예로 들 수 있습니다. 2. Compound Sentence : a sentence with two or more clauses joined by a coordinating conjunction. 등위접속사로 두 개 이상의 절이 결합된 문장이며, "I want to study English, but I have to study French now."같은 문장을 예로 들 수 있습니다. 3. Complex Sentence : tw..