Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Homework 3-2 - In Java Write a program that converts a total number of seconds to hours, minutes, and seconds. It should do the following:

Homework 3-2 - In Java

Write a program that converts a total number of seconds to hours, minutes, and seconds.

It should do the following:

  1. Prompt the user for input

  2. Read an integer from the keyboard

  3. Calculate the result

  4. Use printf to display the output

Your output must be of the format:

totalSeconds seconds = numHours hours, numMinutes minutes, and numSeconds seconds

For example:

If the user entered: 5000

Your program would output: 5000 seconds = 1 hours, 23 minutes, and 20 seconds

5000 seconds = 01h:23m:20s

Sample run would look like:

Enter the number of seconds: 5000

5000 seconds = 1 hours, 23 minutes, and 20 seconds

5000 seconds = 01h:23m:20s

Sample run would look like:

Enter the number of seconds: 3754

3754 seconds = 1 hours, 2 minutes, and 34 seconds

3754 seconds = 01h:02m:34s

Hint1: Use integer division

Hint2: Use the modulus operator

Please make sure to end each line of output with a newline.

Please note that your class should be named SecondsConverter.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

T Sql Fundamentals

Authors: Itzik Ben Gan

4th Edition

0138102104, 978-0138102104

More Books

Students also viewed these Databases questions

Question

RP-13 What does SQ3R stand for?

Answered: 1 week ago