의견.png

"Print"의 두 판 사이의 차이

위키원
이동: 둘러보기, 검색
잔글
잔글
64번째 줄: 64번째 줄:
 
* [[printf]]
 
* [[printf]]
  
{{프로그래밍|검토 필요}}
 
 
{{프로그래밍|토막글}}
 
{{프로그래밍|토막글}}

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

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