Question: C++ please Question 2: [25 points] Write a function called secs to hms ) that takes one positive int value as an argument and converts
Question 2: [25 points] Write a function called secs to hms ) that takes one positive int value as an argument and converts it into the equivalent hours, minutes, and seconds. For example, the value13690 is converted to 3 hours, 48 minutes and 10 seconds. Create a program that call this function by obtaining a value from the user, calfing the function, and then displaying the value of hours, minutes and seconds it returns. Hint: Given the integer n, the number of hours within n is obtained using the integer division n/3600 then dividing ( n%3600) by 60 yields the number of minutes and then the remainder will be the number of seconds A sample run: Enter a positive integer value: 13690 The hours count: 3 The minutes count: 48 The secs count: 10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
