Example :
Input – 69
Output – 69 days = 2 Month and 9 days */
class DayMonthDemo
{
public static void main(String args[])
public static void main(String args[])
{
int num = Integer.parseInt(args[0]);
int days = num%30;
int month = num/30;
System.out.println(num+” days = “+month+” Month and “+days+” days”);
}
int num = Integer.parseInt(args[0]);
int days = num%30;
int month = num/30;
System.out.println(num+” days = “+month+” Month and “+days+” days”);
}
}
0 Comments:
Post a Comment