#include <iostream>
#include <conio.h>
#include <stdio.h>
using namespace std;


class TEST
{
    private:
            int TestCode;
            char Description[30];           //idk the reason for this!!
            int NoCandidate;
            int CenterReqd;

            int CALCNTR()
                {
                    return NoCandidate/100+1;
                }

    public:
            void SCHEDULE();
            void DISPTEST();
};

void TEST::SCHEDULE()
{
    cout<<"enter test code"<<endl;
    cin>>TestCode;
    cout<<"enter description"<<endl;
    gets(Description);//description is not being asked to be entered,however it can be taken from entering characters when asked for the test code
    cout<<"enter number of candidates"<<endl;
    cin>>NoCandidate;
    CenterReqd=CALCNTR();
}
void TEST::DISPTEST()
{
    cout<<"Test Code: "<<TestCode<<endl;
    cout<<"Description: "<<Description<<endl;
    cout<<"Number of Candidates: "<<NoCandidate<<endl;
    cout<<"Center Required "<<CenterReqd<<endl;
}

int main()
{
    TEST obj;
    obj.SCHEDULE();
    obj.DISPTEST();
    getchar();
    return 0;
}

