public static void main(String args[]) throws IOException
{
BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
double number = Double.parseDouble(stdin.readLine());
if (number == 1)
{
//Opens another (module/class)(not sure which one) here
}
Hi! The purpose of this is to create a main menu which when the user inputs on the keyboard 1,2,3,4... calls (modules/classes not sure which one) like to view employees, or searching, or deleting etc.
I would like to know if someone could advise me on the code that calls a module/class. Thanks in advance
2007-03-24
22:32:28
·
3 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design