// 주석 : 프로그램 설명 ctrl + shift + c 한 줄 주석
// 자바의 프로그램 단위 class
public class Test1 {
/*
* ctrl + shift + / 여러 줄 주석
* 멤버변수
* 생성자
* 멤버함수(메서드)
* 시작 함수 main 메서드
* ctrl + space 자동 완성*/
public static void main(String[] args) {
//콘솔창에 출력
System.out.println("안녕 자바");
//실행 run As => Java Application
//ctrl + F11
System.out.println(10+20);
System.out.println(10-20);
System.out.println(10*20);
System.out.println(10/20);
//변수 선언 -> 정수값이 저장될 기억공간(장소) 만들어서 이름을 부여하고 10 저장
//변수 선언 int a;
//변수 기억공간에 10 정수값 저장 a = 10;
int a = 50; //변수 초기값 지정
a = a + 100; //일반적인 더하기
System.out.println("a=" + a); //문자열이나 변수, 숫자 = 연결자 역할
//변수 선언 20값 저장 출력
int b = 100;
System.out.println("b=" + b);
System.out.println("a+b=" + (a+b));
System.out.println("a-b=" + (a-b));
System.out.println("a*b=" + (a*b));
System.out.println("a/b=" + (a/b));
//150+100=250출력
System.out.println(a + "+" + b + "=" + (a+b));
System.out.println(a + "-" + b + "=" + (a-b));
System.out.println(a + "*" + b + "=" + (a*b));
System.out.println(a + "/" + b + "=" + (a/b));
}
}