👿 문제 👿
두 정수 a, b 가 주어질 때 다음과 같은 형태의 계산식을 출력하는 코드를 작성해보세요
a + b = c
[Algorithm]
1. 연산자를 문자열로 표현
2. System.out.printf 사용해서 표현
[Code]
import java.util.Scanner;
public class Solution1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = a+b;
System.out.println(a + " + " + b + " = " + c );
}
}
public class Solution2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.printf("%d + %d = %d",a,b,a+b);
}
}
[+ Plus]
⭐️ Java의 출력문
1. System.out.println()
➡️ 괄호 안의 값을 그대로 출력 + 마지막에 줄바꿈을 넣어주는 메소드
2. System.out.printf()
➡️ 서식문자열을 사용하여 출력
printf("서식문자열", value) 형식으로 사용
* 서식문자
- %d : 정수 - %f : 실수 - %s : 문자열 - %c : 문자
printf는 생각을 못했는데, , , 똑또기들
'Algorithm Study' 카테고리의 다른 글
[Java Algorithm] 프로그래머스 Lv.0 _ 문자열 겹쳐쓰기 (1) | 2024.03.07 |
---|---|
[Java Algorithm] 프로그래머스 Lv.0 _ 문자열 돌리기 (0) | 2024.03.06 |
[Java Algorithm] 프로그래머스 Lv.0 _ 특수문자 출력하기 (0) | 2024.03.06 |
[Java Algorithm] 프로그래머스 Lv.0 _ 대소문자 바꿔서 출력하기 (0) | 2024.03.05 |
[Java Algorithm] 프로그래머스 Lv.0 _ 문자열 반복해서 출력하기 (2) | 2024.03.05 |