Computer Science, asked by divyaprakashnp, 7 months ago

write a Java program to accept and display time in hours minutes and seconds​

Answers

Answered by abhishek8451
1

Answer:

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");

   }    

}

Explanation:

make this answer as brainlist

Similar questions