Sunday, 8 December 2013

Unknown

Write a program to convert given no. of days into months and days.(Assume that each month is of 30 days)


/*Example

:
Input - 69
Output - 69 days = 2 Month and 9 days */
class DayMonthDemo {

    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");
    }
}

Unknown

About Blog No Baap -

Since 2016 BlogNoBaap has been bringing you the very best in all types of web resources. Posted daily, and delivered straight to your inbox each morning.

Subscribe to this Blog via Email :