Can anyone pls help me with Java, i'm not sure... - KingPin's Forum
KPsDenKPsDen ArmoryImage HostingLegendz text RPGIp DisplayIRCFlash Arcade
Forum
      |        
Register
         Giving away my account (Posted By:Headshot - Replies:0 - Views:1)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:5)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:5)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:5)      « »     we have cheap shoes,example :gucci sneaker,air force... (Posted By:jimei - Replies:0 - Views:7)      « »     Lol thx (Posted By:vohrtechs - Replies:16 - Views:159)      « »     Networking not working (Posted By:vohrtechs - Replies:2 - Views:26)      « »     [epic] post you pic thread [/epic] (Posted By:Bionuclear - Replies:263 - Views:6038)      « »     Problem/Network (Posted By:Jewells02 - Replies:0 - Views:16)      « »     Wrath of the lich king (Posted By:Trisha - Replies:23 - Views:272)      « »     
KingPin's Forum
 
K.P.s.N. Register vbBux / KPs Mall Bugs Blogs FAQ Search Today's Posts Mark Forums Read Donate
Go Back   KingPin's Forum > KP's Network Forum > RSS News
Reload this Page Can anyone pls help me with Java, i'm not sure...
 


RSS News This is a discussion on Can anyone pls help me with Java, i'm not sure... in the RSS News;
Description: ...what i'm supposed to do here...?? We have to design a menu-based Java program called StaffContactManager.java to manage a list ...

Reply
 
LinkBack Thread Tools
Can anyone pls help me with Java, i'm not sure...
(#1 (permalink))
Old
glen r is Offline
Private
Points: 167, Level: 2 Points: 167, Level: 2 Points: 167, Level: 2
Activity: 0% Activity: 0% Activity: 0%
glen r is an unknown quantity at this point
 
glen r
Rupees: 250.20
Bank: 500.00
Total Rupees: 750.20
 
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Dec 2007
Can anyone pls help me with Java, i'm not sure... - January 1st, 2008

...what i'm supposed to do here...?? We have to design a menu-based Java program called StaffContactManager.java to manage a list of at most 10 staff contact details.

This is what we have been given to work with so far, i think we just have to fill in the blanks at this part and come up with suitable variable names, but i'm not sure how to get this part to work, it has to be some sort of data entry array i believe :-

import java.io.*;
public class StaffContactManager
{
public static void main(String[] args) throws IOException
{
final int maxStaff = 10;
String [] /* ? */ = new String [maxStaff];
String [] /* ? */= new String [maxStaff];
String [] /* ? */= new String [maxStaff];
String [] /* ? */= new String [maxStaff];
int activeEntries = 0;



System.exit ( 0 );

}//main
}//StaffContactManager



Any help would be greatly appreciated.. thx

 
Reply With Quote
Revenue Shared Ads
(#2 (permalink))
Old
x3_d_e_s is Offline
Private
Points: 152, Level: 2 Points: 152, Level: 2 Points: 152, Level: 2
Activity: 0% Activity: 0% Activity: 0%
x3_d_e_s is an unknown quantity at this point
 
x3_d_e_s
Rupees: 2.20
Bank: 500.00
Total Rupees: 502.20
 
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
January 1st, 2008

I agree ... replace the "/* ? */ " with what you want your variables to be named. I assume something like:

String [] lastname = new String [maxStaff];
String [] firstname= new String [maxStaff];
String [] email= new String [maxStaff];
String [] phone= new String [maxStaff];

 
Reply With Quote
(#3 (permalink))
Old
x3_d_e_s is Offline
Private
Points: 152, Level: 2 Points: 152, Level: 2 Points: 152, Level: 2
Activity: 0% Activity: 0% Activity: 0%
x3_d_e_s is an unknown quantity at this point
 
x3_d_e_s
Rupees: 2.20
Bank: 500.00
Total Rupees: 502.20
 
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
January 1st, 2008

I agree ... replace the "/* ? */ " with what you want your variables to be named. I assume something like:

String [] lastname = new String [maxStaff];
String [] firstname= new String [maxStaff];
String [] email= new String [maxStaff];
String [] phone= new String [maxStaff];
 
Reply With Quote
Revenue Shared Ads
Reply

Bookmarks

Tags
java, pls

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Rupees Per Thread View: 1.00
Rupees Per Thread: 15.00
Rupees Per Post: 5.00
Forum Jump



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Copyright 2004-2009 KPsN


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81