Q:

Java program to convert given number of seconds to hours, minutes and second

belongs to collection: Java Basic Programs

0

Given seconds and we have to convert it into hours, minutes and seconds using java program.

Example:

    Input:
    Input seconds: 6530
    Output:
    HH:MM:SS  - 1:48:50

    Test: Convert HH:MM:SS to seconds again,
    1*60*60 + 48*60 + 50 = 3660 + 2880 + 50 = 6530

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Convert seconds to hours, minutes and seconds in java

import java.util.Scanner;

public class SecondstoHrMinSec 
{
	public static void main(String[] args)
	{
		// create object of scanner class.
		Scanner in = new Scanner(System.in);

		// enter the seconds here.
		System.out.print("Enter seconds : ");

		int seconds = in.nextInt(); 

		int p1 = seconds % 60;
		int p2 = seconds / 60;
		int p3 = p2 % 60;

		p2 = p2 / 60;

		System.out.print("HH:MM:SS - " +p2 + ":" + p3 + ":" + p1);
		System.out.print("\n");
	}  
}

Output

Enter seconds : 6530
HH:MM:SS - 1:48:50

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to swap two numbers using function... >>
<< Java program to check whether the number is IMEI N...