1

Possible Duplicate:
Default constructor with empty brackets

class Question{
      protected:
              int op1;
              int op2;
              string operate;
      public:
         Question();
};
class generateRandomQuiz:Question{
  public: 
         generateRandomQuiz();
         int getp1();
         int getp2();
         string getOp();
}; 

class checkAnswer:generateRandomQuiz{
  private:
          int Ans;
  public:
         checkAnswer(int ans);
};

 Question::Question()
{
  op1=23;
  op2=12;
  operate="/";
}

generateRandomQuiz::generateRandomQuiz():Question()
{
  op1=rand()%50;
  op2=rand()%50;
  string s="+-/*";
  int n=rand()%4;
  operate=s[n];
}

int generateRandomQuiz::getp1()
{
return op1;
}

int generateRandomQuiz::getp2()
{
return op2;
}

string generateRandomQuiz::getOp()
{
    return operate;
}

 checkAnswer::checkAnswer(int ans):generateRandomQuiz()
 {
  Ans=ans;                       
  string operate=getOp();
  int op1=getp1();
  int op2=getp2();
  if (operate=="+")
  {
        if (op1+op2==Ans)
        {
            cout<<"Your answer is correct."<<endl;
        }
        else
        {
            cout<<"You can do better next time."<<endl;
        }
  }
  if (operate=="-")
  {
        if (op1-op2==Ans)
        {
            cout<<"Your answer is correct."<<endl;
        }
        else
        {
            cout<<"You can do better next time."<<endl;
        }
  }if (operate=="*")
  {
        if (op1*op2==Ans)
        {
            cout<<"Your answer is correct."<<endl;
        }
        else
        {
            cout<<"You can do better next time."<<endl;
        }
  }if (operate=="/")
  {
        if (op1/op2==Ans)
        {
            cout<<"Your answer is correct."<<endl;
        }
        else
        {
            cout<<"You can do better next time."<<endl;
        }
  }                                                                
}
int main()
{
 cout<<"This quiz is about evaluating an expression which is being generated randomly" 
 <<endl;

    generateRandomQuiz Q();
    int answer;
    int op1=Q.getp1();
    int op2=Q.getp2();
    string opr=Q.getOp();
    cout<<"What is: "<<op1<<op2<<op2<<"=?"<<endl;
    cin>>answer;
    checkAnswer A(answer);

 system("PAUSE");
 return 0;
}

I am writing a program which generates a quiz randomly and asks the user for an answer answer like this: What is : 15 / 43 = ? The operator and numbers are randomly generated.but when I run the program i get the error

"request for member getp1' inQ', which is of non-class type generateRandomQuiz ()()' " "request for membergetp2' in Q', which is of non-class typegenerateRandomQuiz ()()' " "request for member getOp' inQ', which is of non-class type `generateRandomQuiz ()()' "

Community
  • 1
  • 1
User14229754
  • 85
  • 2
  • 12

1 Answers1

3

Search for "most vexing parse", the fix is:

generateRandomQuiz Q;

Your original code declares a function named Q returning a generateRandomQuiz.

Andreas Brinck
  • 51,293
  • 14
  • 84
  • 114