방명록
- 자바의 정석 10강 화면에 글자 출력하기, 덧셈뺄셈 계산하기2023년 04월 25일 21시 41분 57초에 업로드 된 글입니다.작성자: 민발자728x90
ch 2-1,2 화면에 글자 출력하기, 덧셈 뺄셈 계산하기
public static void main(String[] args) { System.out.print("hello"); System.out.print("hello"); System.out.println("hello"); //줄바꿈 System.out.println("hello"); System.out.println(5+3); //덧셈 System.out.println(5-3); //뺄셈 System.out.println(5*3); //곱셈 System.out.println(5%3); //나머지 System.out.println(5/3); //나눗셈 }
System.out.println(); 출력 후 줄바꿈
System.out.print(); 출력 후 줄바꿈 안함
#Eclipse 단축키
alt + shift + a 멀티 칼럼 편집
ctrl + alt + shift + down 행단위 복사
728x90'정리 > Java' 카테고리의 다른 글
자바의 정석 21~22강 정수형의 오버플로우, 타입 변환 (0) 2023.04.26 자바의 정석 19~20강 printf이용 출력, 화면으로부터 입력받기 (0) 2023.04.26 자바의 정석 17~18강 기본형과 참조형 (0) 2023.04.26 자바의 정석 15~16강 문자, 문자열 리터럴, 문자열 결합 (0) 2023.04.26 자바의 정석 11~14강 변수, 상수, 리터럴 (0) 2023.04.26 다음글이 없습니다.이전글이 없습니다.댓글