Question #264902

11. Make a program that will input hour, convert it into minutes and seconds. Display the minutes and seconds respectively. Your program will be terminated if you input zero in the hour.


Ex. Hour = 2


Minutes = 120


Seconds = 7200



Expert's answer

#include <iostream>
int main() {
	while (true) {
		int hour;
		std::cout << "Hour = ";
		std::cin >> hour;
		if (!hour) break;
		std::cout << "Minutes = " << hour * 60 << '\n';
		std::cout << "Seconds = " << hour * 60 * 60 << '\n';
	}
	return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS