Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스 문자열 정렬
- 백준 N과 M 자바
- 이진수 변환
- SWEA
- 프로그래머스
- StringTokenizer
- 큐
- 클라이언트
- 삼각형의 완성조건
- 스프링부트 도커로 배포
- 알고리즘
- index of
- Queue
- 스택
- 자바
- lv2
- 스프링부트 도커 배포
- Lv1
- COS Pro
- 프로그래머스 풀이
- 문자열
- 프로그래머스 자바
- 오름차순 정렬
- 백준
- 버퍼
- Stack
- 스프링부트 도커
- lv0
- java
- Programmers
Archives
- Today
- Total
mun dev
[COS PRO 1급] 1-1 음식전문점 운영 자바(Java) 본문
문제링크
문제유형
빈칸 채우기
문제
// 다음과 같이 import를 사용할 수 있습니다.
import java.util.*;
class Main {
interface DeliveryStore{
public void setOrderList(String[] orderList);
public int getTotalPrice();
}
class Food{
public String name;
public int price;
public Food(String name, int price){
this.name = name;
this.price = price;
}
}
class PizzaStore _________ {
private ArrayList<Food> menuList;
private ArrayList<String> orderList;
public PizzaStore(){
menuList = new ArrayList<Food>();
String[] menuNames = {"Cheese", "Potato", "Shrimp", "Pineapple", "Meatball"};
int[] menuPrices = {11100, 12600, 13300, 21000, 19500};
for(int i = 0; i < 5; i++)
menuList.add(new Food(menuNames[i], menuPrices[i]));
orderList = new ArrayList<String>();
}
public ________{
for(int i = 0; i < orderList.length; i++)
this.orderList.add(orderList[i]);
}
public ________{
int totalPrice = 0;
Iterator<String> iter = orderList.iterator();
while (iter.hasNext()) {
String order = iter.next();
for(int i = 0; i < menuList.size(); i++)
if(order.equals(menuList.get(i).name))
totalPrice += menuList.get(i).price;
}
return totalPrice;
}
}
public int solution(String[] orderList) {
DeliveryStore deliveryStore = new PizzaStore();
deliveryStore.setOrderList(orderList);
int totalPrice = deliveryStore.getTotalPrice();
return totalPrice;
}
// 아래는 테스트케이스 출력을 해보기 위한 main 메소드입니다.
public static void main(String[] args) {
Main sol = new Main();
String[] orderList = {"Cheese", "Pineapple", "Meatball"};
int ret = sol.solution(orderList);
// [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
System.out.println("solution 메소드의 반환 값은 " + ret + " 입니다.");
}
}
문제 풀이
// 다음과 같이 import를 사용할 수 있습니다.
import java.util.*;
class Main {
interface DeliveryStore{
public void setOrderList(String[] orderList);
public int getTotalPrice();
}
class Food{
public String name;
public int price;
public Food(String name, int price){
this.name = name;
this.price = price;
}
}
class PizzaStore implements DeliveryStore {
private ArrayList<Food> menuList;
private ArrayList<String> orderList;
public PizzaStore(){
menuList = new ArrayList<Food>();
String[] menuNames = {"Cheese", "Potato", "Shrimp", "Pineapple", "Meatball"};
int[] menuPrices = {11100, 12600, 13300, 21000, 19500};
for(int i = 0; i < 5; i++)
menuList.add(new Food(menuNames[i], menuPrices[i]));
orderList = new ArrayList<String>();
}
public void setOrderList(String [] orderList){
for(int i = 0; i < orderList.length; i++)
this.orderList.add(orderList[i]);
}
public int getTotalPrice(){
int totalPrice = 0;
Iterator<String> iter = orderList.iterator();
while (iter.hasNext()) {
String order = iter.next();
for(int i = 0; i < menuList.size(); i++)
if(order.equals(menuList.get(i).name))
totalPrice += menuList.get(i).price;
}
return totalPrice;
}
}
public int solution(String[] orderList) {
DeliveryStore deliveryStore = new PizzaStore();
deliveryStore.setOrderList(orderList);
int totalPrice = deliveryStore.getTotalPrice();
return totalPrice;
}
// 아래는 테스트케이스 출력을 해보기 위한 main 메소드입니다.
public static void main(String[] args) {
Main sol = new Main();
String[] orderList = {"Cheese", "Pineapple", "Meatball"};
int ret = sol.solution(orderList);
// [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
System.out.println("solution 메소드의 반환 값은 " + ret + " 입니다.");
}
}
'알고리즘 > COS PRO 1급' 카테고리의 다른 글
[COS PRO 1급] 1-6 체스의 나이트 자바(Java) (0) | 2023.11.24 |
---|---|
[COS PRO 1급] 1-5 소용돌이 수 자바(Java) (0) | 2023.11.24 |
[COS PRO 1급] 1-4 타임머신 자바(Java) (0) | 2023.11.24 |
[COS PRO 1급] 1-3계산기 by 문자열 자바(Java) (0) | 2023.11.24 |
[COS PRO 1급] 1-2 해밍 거리 구하기 자바(Java) (0) | 2023.11.24 |