Check Answer.

/*C++ Program to Define a Class FLIGHT and accessing member function using its object*/

#include<iostream.h>
#include<conio.h>
#include<stdio.h>

class TEST
{
  private:
 int TestCode;
 char Description[30];
 int NoCandidate;
 int CenterReqd;
 int CALCNTR()
 {
  return NoCandidate/100+1;
 }
  public:
 void SCHDULE();
 void DISPTEST();
};

void TEST::SCHDULE()
{
 cout<<"Enter Test code ";
 cin>> TestCode;
 cout<<"Enter description ";
 gets(Description);
 cout<< "Enter no of candidates ";
 cin>>NoCandidate;
 CenterReqd=CALCNTR();
}

void TEST :: DISPTEST()
{
 cout<<"Test code "<<TestCode<<"\nDescripton "<<Description<<"\nNo of candidate "
 <<NoCandidate<<"\nCenter required "<<CenterReqd;
}

int main ()
{
 TEST obj;
 obj.SCHDULE();
 obj.DISPTEST();
 getch();
 return 0;
}

Post a Comment

Previous Post Next Post