Search results

  1. R

    Wireless Router to Wireless Router

    I will be installing a wireless network in my house here soon and here is my question. One of my roommates has an iMac G5. I can install an Airport Extreme card, but they cost $80. I have yet to find a USB Wireless NIC for that has Mac OSX drivers. So, I was wondering, the wireless router...
  2. R

    Java Help....posted a few days ago...

    Ok I posted this a few days ago. Here is what I need the program to do. Basically i need to creat a SalesPerson array the size of 20. It will read data from a txt file which follows this format (Name followed by sales on the next line). Once the program reads the line, it will see if it has...
  3. R

    Java help plz.....

    Basically i need to creat a SalesPerson array the size of 20. It will read data from a txt file which follows this format (Name followed by sales on the next line). Once the program reads the line, it will see if it has any information for that salesperson in the record array and if not, it...
  4. R

    Using switch in java...help please?

    I was wondering how I would go about changing this if - else statement into the equivalent switch statement: if (i == 1 || i = 2) output = "small"; else if (i == 3) ouput = "medium"; else output = "large";
  5. R

    Java Help Please!!!!

    I have to make a program that uses two files. The first program will include this: name GPA setName(String sName) getName() setGPA(float gpa) getGPA() the second program will: declare a new studnet with the name Robert Print the Student Name Change students name to Frank Print...