[프로그래머스/코딩 기초 트레이닝/JAVA] 2. a와 b 출력하기 / 자바의 출력문 println()

최웅진·2023년 6월 4일
0


반갑습니다~~ 프로그래머스 의 코딩기초 트레이닝을 정주행중 입니다!
좋은 하루 되세요

<문제>

해당 문제에서는 자바의 출력문 println 에 대해 알 수 있습니다.

println()

System.out.println("문자열");
System.out.println(변수명);
System.out.println("문자열" + 변수명);

<채점결과>

<정답 코드>

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.print("a = " + a );
        System.out.println();
        System.out.print("b = " + b );
        System.out.println();
    }
}

<문제 출처>

https://school.programmers.co.kr/learn/courses/30/lessons/181951

profile
PlayData

0개의 댓글