Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

โปรแกรม C++ เพื่อคำนวณความแตกต่างระหว่างช่วงเวลาสองช่วงเวลา


มีสองช่วงเวลาในรูปแบบชั่วโมง นาที และวินาที จากนั้นคำนวณความแตกต่าง ตัวอย่างเช่น −

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

โปรแกรมที่คำนวณความแตกต่างระหว่างสองช่วงเวลาจะได้รับดังนี้ -

ตัวอย่าง

#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

ในโปรแกรมข้างต้น ผู้ใช้จะยอมรับช่วงเวลาสองช่วงเวลาในรูปแบบชั่วโมง นาที และวินาที ด้านล่างนี้ −

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;