profile
개발을 합니다.

Java_02_Variable(변수)/C_Printf

System.out.print(출력하고자하는값); // 단지 출력만 함(줄바꿈 X) System.out.println(출력하고자하는값); // 출력 후 줄바꿈 발생 System.out.printf("출력하고자하는형식==포맷", 값, 값, 값 ...); 출력하고자하는 값

2022년 5월 11일
·
0개의 댓글
·

Java_01_myFirstProject/HelloWorld

System.out.println(출력하고자하는값); => 해당 출력문 출력후 "한줄 띄어주는" 역할 System.out.print(출력하고자하는값); => 해당 출력문 출력만 하고 끝 (한줄띄어쓰기x) 백슬래쉬(\\) + n => 줄바꿈 HelloWorld A_M

2022년 5월 11일
·
0개의 댓글
·