Java Program to add time and display result in hr,minute and second.

Code:
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);
}
}
view raw Time.java hosted with ❤ by GitHub
Output:
36HoursMinutes1Seconds2

Comments

Popular posts from this blog

C++ programming toll plaza simulation program