Write a class time with four data members seconds, SS, MM and HH. It also contains the following member functions
• Get () to get input
• Display () to display output
• ConvertintoSeconds () to convert HH:MM:SS time into seconds.
Write a program to read time in HH:MM:SS format and converts it into total seconds using class.
#include <iostream>
#include <iomanip>
using namespace std;
class Time
{
private:
int seconds;
int hh,mm,ss;
public:
void getTime(void);
void convertIntoSeconds(void);
void displayTime(void);
};
void Time::getTime(void)
{
cout << "Enter time:" << endl;
cout << "Hours? "; cin >> hh;
cout << "Minutes? "; cin >> mm;
cout << "Seconds? "; cin >> ss;
}
void Time::convertIntoSeconds(void)
{
seconds = hh*3600 + mm*60 + ss;
}
void Time::displayTime(void)
{
cout << "The time is = " << setw(2) << setfill('0') << hh << ":"
<< setw(2) << setfill('0') << mm << ":"
<< setw(2) << setfill('0') << ss << endl;
cout << "Time in total seconds: " << seconds;
}
int main()
{
Time T; //creating objects
T.getTime();
T.convertIntoSeconds();
T.displayTime();
return 0;
}
Comments
Leave a comment