Showing posts with label convert. Show all posts
Showing posts with label convert. Show all posts

Monday, February 16, 2015

Java program to convert given number of days into months and days

Java program to convert given number of days into months and days

class Days
{
public static void main(String...s)
{

int n,m,d;
n=Integer.parseInt(s[0]);

m=n/30;
d=n%30;

System.out.println(n+" days"+" = "+m+" months "+"and "+d+" days");
}
}
Read more »