Difference between revisions of "Days in a Month"

From CompSciWiki
Jump to: navigation, search
Line 15: Line 15:
 
|Solution=
 
|Solution=
  
|SolutionCode=<pre>
+
|SolutionCode=<pre>/* Class DaysInAMonth
/* Class DaysInAMonth
+
 
  * Created by Tyler Dielschneider
 
  * Created by Tyler Dielschneider
 
  * Made in COMP3040
 
  * Made in COMP3040
Line 60: Line 59:
 
     }
 
     }
 
}
 
}
 +
 
</pre>
 
</pre>
  
 
}}
 
}}

Revision as of 14:06, 3 April 2010

Back to the Program-A-Day homepage

Problem

Create a program that allows the user to enter a month, and then outputs the number of days in that month. For simplicity sake, ask the user for the number of the month rather than the string. Also, assume there are 28 days in February. Use JOptionPane.showInputDialog to capture the input, and System.out.println to generate the output. Make sure the user enters a valid month (1-12). If they enter a number that is not in that range, output "Invalid Month". If the user enters a non-integer, let the program crash.


For example, if they want to know how many days there are in the month of January, the user would enter the number 1 and receive an answer of 31.

 

SideSectionTitle

float
Taken from http://www.flickr.com/photos/daniello/565304023/

An image or By Students section

Solution

Code

Solution Code

Back to the Program-A-Day homepage