2023년 10월 14일

최혁·2023년 10월 18일
0
post-custom-banner
미뤄뒀던 TIL 을 작성하다 보니 어느덧 JAVA 1주차 강의 까지 도착했다.

요리 레시피를 출력하는 코드를 작성하시오.

import java.util.Scanner;

// Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class Main {
    public static void main(String[] args) {

        
        Scanner scanner = new Scanner(System.in);
        String title = scanner.nextLine();

        double rating = Double.parseDouble(scanner.nextLine());

        String[] strings = new String[10];

        // scanner 뒤에 숫자 타입이 오게 되면 숫자만 읽게 되고 그 뒤에 오는 화이트 스페이스를 남긴다.
        // 다음 for문의 string[0] 에 화이트 스페이스를 저장 시킴으로 픽스
        /*

백종원 돼지고기 김치찌개 만들기
4.5
돼지고기는 핏물을 빼주세요.
잘익은 김치 한포기를 꺼내서 잘라주세요.
냄비에 들기름 적당히 두르고 김치를 넣고 볶아주세.요
다진마늘 한스푼, 설탕 한스푼 넣어주세요.
종이컵으로 물 8컵 부어서 센불에 끓여주세요.
핏물 뺀 돼지고기를 넣어주세요.
된장 반스푼, 양파 반개, 청양고추 한개를 썰어서 넣어주세요.
간장 두스푼반, 새우젓 두스푼, 고춧가루 두스푼반 넣어주세요.
중불로 줄여서 오래 끓여주세요~!!
마지막에 파 쏭쏭 썰어서 마무리하면 돼요^^

*/


        for (int i = 0; i < strings.length; i++) {
            strings[i] = scanner.nextLine();
        }

        System.out.println('\n'); // 복붙 줄바꿈

        System.out.println("[ " + title + " ]");
        System.out.println("별점 : " + rating +" ("+ (int)rating * 20.0 +"%)");

        for (int i = 0; i < strings.length; i++) {
            System.out.println(i + 1 + ". " + strings[i]);
        }

    }
}

주석 개같이 달아둔 부분 양해바라며,
제출한 코드는 위와 같다.

복사하여 붙여넣고 엔터를 누르면 잘 동작하는걸 확인할 수 있다.

post-custom-banner

0개의 댓글