검수요청.png검수요청.png
의견.png

"Print"의 두 판 사이의 차이

위키원
이동: 둘러보기, 검색
잔글
1번째 줄: 1번째 줄:
'''Print'''는 기본적인 출력 함수이다. [[Println]]처럼 따라오는 개행문자가 없기 때문에 줄바꿈 없이 그대로 문자가 출력한다.<ref> moon1226, 〈[https://moon1226.tistory.com/12 JAVA print, printf, println 차이점]〉, 《티스토리》, 2019-07-24 </ref>
+
'''Print'''는 기본적인 출력 함수이다. 변수선언을 통해 문자와 연산식 출력이 가능하다.<ref> moon1226, 〈[https://moon1226.tistory.com/12 JAVA print, printf, println 차이점]〉, 《티스토리》, 2019-07-24 </ref>
  
 
== 문법 ==
 
== 문법 ==
31번째 줄: 31번째 줄:
 
  안녕하세요
 
  안녕하세요
  
System.out.print("반갑습니다.");
+
String str = "안녕하세요"
 +
System.out.print(str);
 +
;
  
 
결과
 
결과
  반갑습니다.
+
  안녕하세요
 +
 
 +
System.out.print("4+5="+(4+5));
 +
 
 +
결과
 +
4+5=9
 +
 
 +
int a = 4;
 +
 
 +
int b = 5;
 +
 
 +
int sum = a+b;
  
System.out.print("Hellow");
+
System.out.print("a+b="+(sum));
  
 
결과
 
결과
  Hellow
+
  a+b=9
  
 
{{각주}}
 
{{각주}}
52번째 줄: 65번째 줄:
  
 
{{프로그래밍|검토 필요}}
 
{{프로그래밍|검토 필요}}
 +
{{프로그래밍|토막글}}

2021년 8월 5일 (목) 09:41 판

Print는 기본적인 출력 함수이다. 변수선언을 통해 문자와 연산식 출력이 가능하다.[1]

문법

print

System.out.print("문장1");
System.out.print("문장1");

println

System.out.print("문장1");
System.out.print("문장1");

printf

System.out.print("문장%d",1);
System.out.print("문장%d",1);

결과

  print      println     printf
문장1문장1    문장1     문장1문장1
              문장1

예제

System.out.print("안녕하세요");

결과

안녕하세요

String str = "안녕하세요" System.out.print(str);

결과

안녕하세요

System.out.print("4+5="+(4+5));

결과

4+5=9

int a = 4;

int b = 5;

int sum = a+b;

System.out.print("a+b="+(sum));

결과

a+b=9

각주

  1. moon1226, 〈JAVA print, printf, println 차이점〉, 《티스토리》, 2019-07-24

참고 자료

같이 보기


  검수요청.png검수요청.png 이 Print 문서는 프로그래밍에 관한 글로서 검토가 필요합니다. 위키 문서는 누구든지 자유롭게 편집할 수 있습니다. [편집]을 눌러 문서 내용을 검토·수정해 주세요.  

  의견.png 이 Print 문서는 프로그래밍에 관한 토막글입니다. 위키 문서는 누구든지 자유롭게 편집할 수 있습니다. [편집]을 눌러 이 문서의 내용을 채워주세요.