Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- ISTQB
- might have p.p
- sort함수
- for ing
- by any chance
- Realtime Rendering
- by until
- 명세기반테스트
- counldn't have
- keep -ing
- if조건절
- gameQA
- 명절 표현
- metascore
- know
- I'm glad
- java
- happen to
- end up ing
- 코로나19
- relif
- continue to
- 형변환
- 게임QA
- html
- C++
- it's a good thing
- 제5인격
- UE4
- 변수
Archives
- Today
- Total
Records rather than Memories
[java] 변수 (Variable) 본문
변수의 선언과 할당
int a; // 변수 선언
- int : data type
- a : name of variable(변수의 이름)
* int는 정수를 담겠다고 지정한 것
a=1;
System.out.println(a+1); //2
a=2;
System.out.println(a+1); //3
a에 담겨진 값을 이용해 출력이 된다.
'Software > JAVA' 카테고리의 다른 글
[java] 정수와 실수 (0) | 2019.10.01 |
---|---|
Eclipse의 기능 (0) | 2019.09.30 |
JAVA의 실행 (0) | 2019.09.29 |
[java] Data type 자료형 (0) | 2019.09.28 |
JAVA의 구성 (0) | 2019.09.27 |
Comments