class Days
{
public static void main(String args[])
{
int n,m,d;
n=Integer.parseInt(args[0]);
m=n/30;
d=n%30;
System.out.println(n+" days"+" = "+m+" months "+"and "+d+" days");
}
}
Output

{
public static void main(String args[])
{
int n,m,d;
n=Integer.parseInt(args[0]);
m=n/30;
d=n%30;
System.out.println(n+" days"+" = "+m+" months "+"and "+d+" days");
}
}
Output
No comments:
Post a Comment