Search:

Type: Posts; User: Jarruda

Search: Search took 0.13 seconds.

  1. Beginner assignment - constructor issue / error

    I've got an assignment where I need to write a class that holds 3 test scores. The class constructor is suppose to accept 3 test scores and assign them to test score fields.

    I'm starting off slow,...
  2. Replies
    4
    Views
    1,588

    Re: Help with beginner assignment

    I think I got it!



    public class EmployeeTest
    {
    public static void main(String[] args)
    {
    Employee a = new Employee("Susan Meyers", 47899, "Accounting", "Vice President");
    ...
  3. Replies
    4
    Views
    1,588

    Re: Help with beginner assignment

    This is what I have so far.



    public class EmployeeTest
    {
    public static void main(String[] args)
    {
    String testName1; //Holds employee names
    int testIdnumber1; //Holds employee...
  4. Replies
    4
    Views
    1,588

    Help with beginner assignment

    I've had to write a class on my own, which I have, and then I need to apply it to another program that creates three objects that holds specific data. The class seems right to me, it holds spots for...
Results 1 to 4 of 4