오보에블로그

5362 전투드로이드가격 본문

C++ & C#/C++

5362 전투드로이드가격

(OBO) 2018. 3. 17. 11:55
728x90



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
#include <stdio.h>
 
int main(void){
    float cost[6]; 
    cost[0= 350.34;
    cost[1= 230.90;
    cost[2= 190.55;
    cost[3= 125.30;
    cost[4= 180.90;
 
    int TESTCASE;
    int arr[6];
    float total = 0;
 
    scanf("%d"&TESTCASE);
    for(int i = TESTCASE; i > 0; i--){
        for(int j = 0; j<5 ; j++){
            scanf("%d",&arr[j]);
            total += cost[j] * arr[j];
        }
        printf("$%.2f\n",total);
        total = 0;
 
    }
}
cs

<솔루션>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

A ,B ,C , D, E 를 각각 cost[0] - cost[4]에 저장하고, for문을 이용해 A ,B ,C , D, E의 필요 개수들을 각각 arr[0] ~ arr[4]에 저장하고 total에 가격과 필요개수를 곱한값을 각각 더해준다.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

다음 문제는 백준알고리즘 온라인 저지에서 가져왔습니다.

728x90