Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Convert seconds to hour, minute and seconds

Java Basic: Exercise-55 with Solution

Write a Java program to convert seconds to hour, minute and seconds.

Pictorial Presentation:

Java Basic Exercises: Convert seconds to hour, minute and seconds
Sample Data:
Input seconds: 86399
23:59:59

Sample Solution:

Java Code:

import java.util.*;
 public class Exercise55 {
 public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Input seconds: ");
		int seconds = in.nextInt(); 
        int p1 = seconds % 60;
        int p2 = seconds / 60;
        int p3 = p2 % 60;
        p2 = p2 / 60;
        System.out.print( p2 + ":" + p3 + ":" + p1);
		System.out.print("\n");
    }    
 }

Sample Output:

Input seconds: 86399                                                   
23:59:59

Pictorial Presentation:

Pictorial Presentation: Java exercises: Convert seconds to hour, minute and seconds.

Flowchart:

Flowchart: JJava exercises: Convert seconds to hour, minute and seconds

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program that accepts three integers from the user and return true if two or more of them (integers ) have the same rightmost digit.
Next: Write a Java program to find the number of values in a given range divisible by a given value.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe