Java Program to add time and display result in hr,minute and second.
Code:
Output:
36HoursMinutes1Seconds2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Time{ | |
//Function which takes input and calculates fh(final hour) ,fm(final minute) and fs(final second). | |
public void input(int h1,int h2,int m1,int m2,int s1,int s2){ | |
int fh=h1+h2,fm=0,fs=0; | |
if(s1+s2>60){ | |
fs=(s1+s2)/60; | |
fm+=1; | |
} | |
if(m1+m2>60){ | |
fm=(m1+m2)/60; | |
fh+=1; | |
} | |
//Display the result | |
System.out.println(fh+"Hours"+"Minutes"+fm+"Seconds"+fs); | |
} | |
public static void main(String args[]){ | |
Time t= new Time(); | |
//Value input. | |
t.input(23,12,34,67,67,103); | |
} | |
} |
36HoursMinutes1Seconds2
Comments
Post a Comment
Feel free to leave a comment...