반응형
package study;
public class Study01 {
public static void main(String[] args) {
// 여기가 코딩하는 곳임.
// 시스템의 out 기능을 사용해서 화면에 줄단위 line(ln)로 인쇄 print한다.
// 자바에서는 문장이 끝날 때는 반드시 세미콜론을 붙여줘야 한다.
// 실행 단축기는 ctrl + F11 이다.
// 중괄호에는 붙히지 않아도 된다.
System.out.println("안녕 자바");
/*
println과 print와 차이는 아래와 같다.
println은 줄 바꿈을 알아서 해준다.
System.out.println은 Sysout을 친 뒤
컨트롤 + 스페이스를 누르면 자동입력된다.
*/
System.out.print("아버지가");
System.out.print("방에 들어가신다");
System.out.println("");
System.out.println("안");
System.out.println("녕");
// int자료형, a 변수의 이름
// int a = 1; 로 줄여쓸 수도 있다.
int a = 3;
a = 4;
System.out.println(a);
int b = 5;
// b에 값에 1을 더하라는 뜻
b++;
System.out.println(b);
// b의 값에 -1 하라는 뜻
b--;
System.out.println(b);
int c = 10;
int d = 2;
String insa = "안녕하세요";
System.out.println(insa + " " + c + d);
System.out.println(insa + " " + (c - d));
System.out.println(insa + " " + c * d);
System.out.println(insa + " " + c / d);
}
}
안녕하세요
반응형
'Projects > 자바 슬라임 게임 만들기' 카테고리의 다른 글
자바로 한국나이 계산기 만들기 (0) | 2022.01.24 |
---|---|
자바 데이터타입 변환, 문자열, 정수형 (0) | 2022.01.23 |
자바 for 문 구현하기 (0) | 2022.01.23 |
자바 부등호 사용법 (0) | 2022.01.22 |
자바에서 메시지 창 띄우기 - JOptionPane.showMessageDialog (0) | 2022.01.22 |