FREE E LEARNING PLATFORM
HOMEEXCEPTIONSOOPSJVMINTRO
 

Add two Times entered by User

noidatut course




This program takes two times as input and displays the total time after adding both the entered times.

Example: Program to add two times

#include <iostream>  
using namespace std;
    int main()  {
  	//for first time 
 	int hour1,minute1,second1; 
 	//for second time 
 	int hour2,minute2,second2; 
 	//for the total(sum) time 
 	int hour,minute,second; 
   	//taking the input from user 
 	cout<<"***Enter first time***"<<endl; 
 	cout<<"Hours: "; cin>>hour1;  
	cout<<"Minutes: "; cin>>minut
e1;  	cout<<"Seconds: "; 
cin>>second1;
    	//taking the input from use
r  	cout<<"***Enter second time***"<<endl; 
 	cout<<"Hours: "; 
cin>>hour2; 
 	cout<<"Minutes: "; 
cin>>minute2;
  	cout<<"Seconds: "
; cin>>second2;
    	//adding the entered times
second=second1+second2;
  	minute=minute1+minute2+(second/60); 
 	hour=hour1+hour2+(minute/60); 
 	minute=minute%60; 
 	second=second%60; 
   	//displaying total time 
 	cout<<"Total Time is: "<<hour<<" hours "<<minute<<" minutes "<<second<< " seconds"; 
   	return 0;  }

Output

***Enter first time***
Hours: 5
Minutes: 10
Seconds: 45
***Enter second time***
Hours: 6
Minutes: 40
Seconds: 45
Total Time is: 11 hours 51 minutes 30 seconds






Leave Comment