#include <iostream>
using namespace std;
int main() {
float a[5];
for (int i = 0; i < 5; i++)
cin >> a[i];
float tmp = a[0];
float tmp1;
for (int i = 0; i < 2; i++)
if (tmp > a[i + 1])
tmp = a[i + 1];
a[3] > a[4] ? tmp1 = a[4] : tmp1 = a[3];
cout.setf(ios::fixed);
cout.precision(1);
cout << (tmp + tmp1)*1.1;
}
'Programming > CodeUp' 카테고리의 다른 글
<코드업> 4684 : 자물쇠 (0) | 2019.07.23 |
---|---|
<코드업> 4040 : 펜션 (0) | 2019.07.23 |
<코드업> 3321 : 최고의 피자 (0) | 2019.07.23 |
<코드업> 3301 : 거스름돈 (0) | 2019.07.23 |
<코드업> 3120 : 리모컨 (0) | 2019.07.23 |