package _01_polymorphism;
public class Ex2_1 {
public static void main(String[] args) {
// sysout ctrl + space : 자동완성
// ctrl + alt + down : 행단위 복사
// ctrl + d : 행 삭제
// alt + shift + a (컬럼 편집 모드)(토글)누르고 shift + down 후, 문자 추가 or 삭제
// print() - 출력 후에 줄바꿈을 안함
// println() - 출력 후에 줄바꿈을 함
System.out.println("Hello");
System.out.print("Hello");
System.out.print("Hello");
System.out.println("3+5"); // 3+5
System.out.println(3+5); // 8 출력
System.out.println(3+5); // 더하기
System.out.println(3-5); // 뺄셈
System.out.println(3*5); // 곱셈
System.out.println(3/5); // 나눗셈
}
}