안녕하세요. 오늘은 시계탑을 세울 거예요.
https://www.acmicpc.net/problem/31561
N이 30이하이면 2로 나눈 값을 출력해줍시다.
N이 30 초과이면 30을 빼고 3/2을 곱한값 + 15를 출력해줍시다.
#include <iostream>
#define ll long long
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
double x;
cin >> x;
cout << fixed; cout.precision(1);
if (x <= 30) cout << x / 2;
else cout << 15 + (x - 30) * 1.5;
}
감사합니다.