덧셈식 출력하기 Lv. 0

박영준·2023년 5월 31일
0

코딩테스트

목록 보기
190/300
import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();

        System.out.println(a + b);
    }
}


해결법

방법 1

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();

        System.out.println(a  + " + " + b + " = " + (a+b));
    }
}

방법 2

import java.util.Scanner;

public class Solution {
    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);
    }
}
  • printf 출력 서식
    • %d : 정수
    • %f : 실수
    • %c : 문자
    • %s : 문자열
    • 예시
      System.out.printf("%d%d%d", 100,90,60)		// 정수 3개를 입력하겠다
      // 출력 결과 : 1009060

참고: [Java] printf 출력서식 - %d, %f, %c, %s


덧셈식 출력하기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글