6. Write a function called convertTime, which accepts the number of seconds (integer) seconds and has three integer output parameters hr, min, sec. The function will convert the number of seconds into hours, minutes and seconds. (Hint: hr = seconds/3600, min= seconds%3600/60, sec=seconds%60) e.g. input of 7000 should produce the output values: 1, 56, 40. Write a program that asks a user to input a time period in seconds, calls the function convertTime to convert the time period into hours, minutes and seconds, and then prints the result in the format below: 7000 seconds = 1 hr 56 min 40 sec

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 12PE: Write a program that takes as input five numbers and outputs the mean (average) and standard...
icon
Related questions
Question

By using the C++ programming language, please provide the source code, screenshot of the program output, and structure chart thanks.

6.
Write a function called convertTime, which accepts the number of seconds (integer) seconds
and has three integer output parameters hr, min, sec. The function will convert the number of
seconds into hours, minutes and seconds.
(Hint: hr = seconds/3600, min= seconds%3600/60, sec=seconds%60)
e.g. input of 7000 should produce the output values: 1, 56, 40.
Write a program that asks a user to input a time period in seconds, calls the function
convertTime to convert the time period into hours, minutes and seconds, and then prints the
result in the format below:
7000 seconds = 1 hr 56 min 40 sec
Transcribed Image Text:6. Write a function called convertTime, which accepts the number of seconds (integer) seconds and has three integer output parameters hr, min, sec. The function will convert the number of seconds into hours, minutes and seconds. (Hint: hr = seconds/3600, min= seconds%3600/60, sec=seconds%60) e.g. input of 7000 should produce the output values: 1, 56, 40. Write a program that asks a user to input a time period in seconds, calls the function convertTime to convert the time period into hours, minutes and seconds, and then prints the result in the format below: 7000 seconds = 1 hr 56 min 40 sec
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Introduction to Coding
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning