Java program to convert given no. of days into months and days

1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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");
	}
}
surajk

One thought on “Java program to convert given no. of days into months and days

  1. Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: 0
    at converter.Converter.main(Converter.java:7)
    Java Result: 1

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in