독도 광고 모금 캠페인

Language Basics
기초 언어
Even a small program such as this uses many of the traditional features of the Java programming language, including variables, operators, and control flow statements.
이것과 같은 작은 프로그램 일지라도 변수를 포함하여, 연산자, 및 통제 교수 계산서 같은 전통적인 자바 프로그래밍 언어의 많은 특징을 이용한다
The code might look a little mysterious now.
현재 이러한 코드는 조금 신비하게 보여진다.
But this trail teaches what you need to know about the nuts and bolts of the Java programming language to understand this program.
그러나 이러한 과정은 이 프로그램을 이햐하기 위해 당신이 알아야 할 자파 프로그로맹 언어의 기초에 대해 가르쳐준다.

Variables
변수
You use variables in your program to hold data.
당신은 당신의 프로그램 데이터를 처리하기 위해 프로그램내에 변수를 사용한다.
This section discusses data types, how to initialize variables, and how to refer to variables within blocks of code.
이 부분에서는 자료 유형, 변수값의 초기화 방법 및 코드블록내에서 어떻게 변수를 가리키는지 토론한다.

Operators
연산자
This section details how you perform various operations, such as arithmetic and assignment operations.
이 부분에서는 단순계산 및 연산 할당과 같은 다양한 연산들이 어떻게 실행하는가를 세부적으로 다룬다.

Expressions, Statements and Blocks
논리식, 명령문 그리고 블록
This section discusses how to combine operators and variables into sequences known as expressions.
이 부분에서는 연산과 변수를 알려진 일련의 순서로 결합하는가에 대해 토론한다.
Expressions are the building blocks of your code. You will also learn how to construct statements and statement blocks.
논리식은 당신의 코드를 블록화하는 것이다. 당신은 어떻게 명령블록과 명령문을 만드는지 배울것이다.

Control Flow Statements
제어명령문
프로그램들은 순차 제어 명령문을 실행하거나 루프 또는 프로그램내 다른 부분으로 점프하기 위해 제어명령문을 사용한다.
This section shows you how to control your program's flow with statements as if-else and while.
이 부분에서는 if_else 와 while 같은 명령문을 통해 당신의 프로그램의 일련과정을 어떻게 제어하는지를 보여준다.




Posted by mktalk