Results 1 to 4 of 4
- 12-14-2011, 01:48 AM #1
Member
- Join Date
- Dec 2011
- Posts
- 8
- Rep Power
- 0
I need urgent help to complete this code please!
import javax.swing.JOptionPane;
public class OptionalLab {
/** Main method
* @return */
public static void main(String[] args) {
String output = "";
// Prompt the user to enter year
String yearString = JOptionPane.showInputDialog(null,
"Enter full year (i.e. 2001):",
"Enter Year", JOptionPane.QUESTION_MESSAGE);
Integer.parseInt(yearString);
// Prompt the user to enter month
String monthString = JOptionPane.showInputDialog(null,
"Enter month in number between 1 and 12:",
"Enter Month", JOptionPane.QUESTION_MESSAGE);
Integer.parseInt(monthString);
// invoke method here
public static int
JOptionPane.showMessageDialog(null, output);
}
}
Can someone lead me on how to write methods for this program, so that the program prints out the days of the month input by the user..?
- 12-14-2011, 02:03 AM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,608
- Rep Power
- 5
Re: I need urgent help to complete this code please!
Based upon this post and your previous posts, I would highly recommend reading the following links:
How to help yourself get help
How to ask questions
- 12-14-2011, 02:08 AM #3
Re: I need urgent help to complete this code please!
Can you show the input and what output you want to generate.the program prints out the days of the month input by the user
The describe what methods you need to generate that output and show the code you are having problems with.
- 12-14-2011, 02:37 AM #4
Member
- Join Date
- Nov 2011
- Posts
- 65
- Rep Power
- 0
Similar Threads
-
complete the code
By blackz in forum New To JavaReplies: 2Last Post: 09-11-2011, 02:04 AM -
Need help its Urgent need to complete in time,plz help anyone.................
By shaggyoo7 in forum New To JavaReplies: 2Last Post: 01-12-2009, 08:36 AM -
Complete code won't run in eclipse
By confusedStudent in forum New To JavaReplies: 2Last Post: 12-19-2008, 08:43 AM -
code HELP URGENT
By NickkicN in forum New To JavaReplies: 1Last Post: 08-14-2008, 05:43 PM -
Urgent small code
By karingulanagaraj in forum New To JavaReplies: 7Last Post: 08-11-2008, 04:11 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks