Write a program to input the time in hours, minutes and seconds and print it in seconds in java.
Answers
Answer:
import java.util.*;
public class Class
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
System.out.print("Enter the time in seconds: ");
int s=sc.nextInt();
int hr=s/3600;
int min=(s-hr*3600)/60;
int sec=s-((hr*3600)+min*60);
System.out.println(s+" second= "+hr+" hours "+ min+" minutes "+ sec +" seconds..");
}
}
Explanation:
I hope this will help you..Please mark this answer as the brainliest.
Explanation:
In this java program, we are reading number of seconds from the user and converting the seconds into hours, minutes and seconds and printing in HH:MM:SS format.
Submitted by Chandra Shekhar, on February 03, 2018
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
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");
}
} Hope it helps