
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:

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
Flowchart:

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 integers within the range of two specified numbers and that are divisible by another number.
What is the difficulty level of this exercise?
New Content: Composer: Dependency manager for PHP, R Programming