Користувач вводить з клавіатури час початку і час завершення використання скутера(години, хвилини, та секунди). Порахувати вартість подорожі, якщо вартість хвилини - 2 гривні
Ответы
#include <iostream>
using namespace std;
int main() {
int start_hour, start_minute, start_second, end_hour, end_minute, end_second;
int cost_per_minute = 2;
cout << "Enter start time (hh mm ss): ";
cin >> start_hour >> start_minute >> start_second;
cout << "Enter end time (hh mm ss): ";
cin >> end_hour >> end_minute >> end_second;
// Calculate total number of seconds for start time and end time
int start_time_in_seconds = start_hour * 3600 + start_minute * 60 + start_second;
int end_time_in_seconds = end_hour * 3600 + end_minute * 60 + end_second;
// Calculate total number of seconds for the journey
int journey_duration_in_seconds = end_time_in_seconds - start_time_in_seconds;
// Calculate total number of minutes for the journey
int journey_duration_in_minutes = journey_duration_in_seconds / 60;
// Calculate the cost of the journey
int cost = journey_duration_in_minutes * cost_per_minute;
cout << "Total cost of the journey is: " << cost << " UAH" << endl;
return 0;
}