Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 주어진 두 기간의 차이

<시간/>

문제 설명

문자열 'HH:MM:SS' 형식의 두 기간이 제공됩니다. 여기서 'HH'는 시, 'MM'은 분, 'SS'는 초를 나타냅니다. 이 두 기간 사이의 동일한 문자열 형식의 차이를 찾으십시오.

Time period 1 = 8:6:2
Time period 2 = 3:9:3
Time Difference is 4:56:59

예시

다음은 필요한 출력을 찾는 C++ 프로그램입니다.

#include <iostream>
using namespace std;
int main() {
   int hour1, minute1, second1;
   int hour2, minute2, second2;
   int diff_hour, diff_minute, diff_second;
   cout << "Enter time period 1" << endl;
   cout << "Enter hours, minutes and seconds respectively: "<< endl;
   cin >> hour1 >> minute1 >> second1;
   cout << "Enter time period 2" << endl;
   cout << "Enter hours, minutes and seconds respectively: "<< endl;
   cin >> hour2 >> minute2 >> second2;
   if(second2 > second1) {
      minute1--;
      second1 += 60;
   }
   diff_second = second1 - second2;
   if(minute2 > minute1) {
      hour1--;
      minute1 += 60;
   }
   diff_minute = minute1 - minute2;
   diff_hour = hour1 - hour2;
   cout <<"Time Difference is "<< diff_hour <<":"<< diff_minute <<":"<<diff_second;
   return 0;
}

출력

Enter time period 1
Enter hours, minutes and seconds respectively: 7 6 2
Enter time period 2
Enter hours, minutes and seconds respectively: 5 4 3
Time Difference is 2:1:59