All public logs
Jump to navigation
Jump to search
Combined display of all available logs of DISLab. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:11, 21 July 2022 Swpark talk contribs moved page 컴퓨터프로그래밍및실습 (2022년)/0908 to 컴퓨터프로그래밍및실습 (2022년)/0905 without leaving a redirect
- 21:09, 21 July 2022 Swpark talk contribs deleted redirect 컴퓨터프로그래밍및실습 (2022년)/0908 by overwriting (Deleted to make way for move from "컴퓨터프로그래밍및실습 (2022년)/변수와 타입")
- 14:13, 20 July 2022 Swpark talk contribs moved page 컴퓨터프로그래밍및실습 (2022년)/0908 to 컴퓨터프로그래밍및실습 (2022년)/변수와 타입
- 13:43, 18 July 2022 Swpark talk contribs created page 컴퓨터프로그래밍및실습 (2022년)/0908 (Created page with "== 변수 == * 변수란 기억 장소(메모리)에 대한 별칭이다. * 변수의 선언 <syntaxhighlight lang="java"> int age; // 정수(int) 값을 저장할 수 있는 age 변수 선언 double value; // 실수(double) 값을 저장할 수 있는 value 변수 선언 int x, y, z; // 여러 개를 선언할 수 있음 </syntaxhighlight> * 변수 이름을 붇이는 규칙 *# 첫 번째 글자는 문자이거나 $, _ 이어야 하고 숫자로 시작할 수 없...")