Search:

Type: Posts; User: JessicaCouture95

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    1,575

    Re: Constructor Undefined?

    After fixing the constructor error, I found many more problems within my code. Luckily, I was able to quickly figure them out. They were just minor errors. The code now works. But thank you!
  2. Replies
    4
    Views
    1,575

    Re: Constructor Undefined?

    The class has the constructor


    <
    public TestScore(int s1, int s2, int s3)
    {
    score1 = s1;
    score2 = s2;
    score3 = s3;
    }
  3. Replies
    4
    Views
    1,575

    Constructor Undefined?

    Hello,

    I am very new to Java, and I keep running into problems with constructors. Specifically, I am having trouble with this class & driver:



    <
    public class TestScores
    {
    private int...
Results 1 to 3 of 3