자바 학습(1~5일) 잊어버릴 만한 것 재복습
1일차 정리본 출력문 자바에서 출력할 수 있는 제일 기본적인 문장은 System.out.print & System.out.println이 있다. 두 문장의 차이점은 아래와 같음 System.out.print("Hello World"); System.out.println("Hello World"); 출력문: Hello WorldHello World System.out.print은 다음 문장과 띄어쓰기를 하지 않고 System.out.println은 다음 문장을 띄어쓰기 해줌 정수의 종류 float a = 1.111111111f; // 7자리까지만 출력 + 끝에 항상 f를 붙여줘야됨 double b = 1.1312313; // 15자리까지 출력 long c = 21000000000L; // 20억이 넘을때는..