beginnersbook.com

  • Home
  • All Tutorials
    • Learn Servlet
    • Learn JSP
    • Learn JSTL
    • Learn C
    • Learn C++
    • Learn MongoDB
    • Learn XML
    • Learn Python
    • Learn Perl
    • Learn Kotlin
  • Core Java
  • OOPs
  • Collections
  • Java I/O
  • JSON
  • DBMS

C++ Program to Add two Times entered by User

By Chaitanya Singh | Filed Under: C++ Programs

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>>minute1;
	cout<<"Seconds: "; cin>>second1;

	//taking the input from user
	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

Enjoyed this post? Try these related posts

  1. C++ Program to Check whether an input number is Prime or not
  2. C++ Program to Convert Uppercase to Lowercase
  3. C++ Program to Check Leap Year using function
  4. C++ Program to Find Second Smallest Element in an Array
  5. C++ Program to find number of Digits and White Spaces in a String
  6. C++ Program to check Armstrong Number

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Programs

  • C Programs
  • Java Programs

Recently Added..

  • JSON Tutorial
  • Java Regular Expressions Tutorial
  • Java Enum Tutorial
  • Java Annotations Tutorial

Copyright © 2012 – 2021 BeginnersBook . Privacy Policy . Sitemap