Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~975 People Reached
Favorite Tags
Member Avatar for chiiqui

I am having an error with my constructor, why is that? :| [CODE]public class Name{ private String firstName; private String middleName; private String lastName; public Name(){ this( "null" , "null" , "null"); } public Name(String first){ this(first," "," "); } public Name(String middle){ this(" ",middle," "); } public Name(String fName …

Member Avatar for chiiqui
0
229
Member Avatar for LittleMissChoco

Im having problems with my code. :( the code should. the submenu for my menu should be on a radio button type. here's my first code: [CODE] public ... { //for background JMenuItem image = new JMenuItem("Images"); JMenuItem music = new JMenuItem("Music"); //submenu of music JRadioButtonMenuItem play = new JRadioButtonMenuItem("Play"); …

Member Avatar for LittleMissChoco
0
146
Member Avatar for LittleMissChoco

I want to calculate the age of a person, when he/she inputted his/her brthdy on the form, it will shows his/her bday in year/month/day format Example, the user chooses February 11 1994 on the drop down list. when he/she click submit, it will display his/her age Output must be like …

Member Avatar for diafol
0
191
Member Avatar for LittleMissChoco

[CODE]<html> <head> <title>Web Development</title> </head> <body> <h2 style="text-align: center">Personal Information</h2> <?php // FOR PERSONAL INFORMATION PHP //text area First name if(empty($_POST['name'])) { echo "<p>You didn't enter your name.</p>\n"; } else { echo "Your Name: <b>" . $_POST['name'] . "</b><br />\n"; } // function get_Age_difference($start_date,$end_date){ list($start_year,$start_month,$start_date) = explode(‘-’, $start_date); list($current_year,$current_month,$current_date) = …

Member Avatar for cereal
0
409