C++

C++ Project on LIC Database Management

Database Management

//////****************************************************\\\
//////* ¯     LIC DATABASE MANAGEMENT SOFTWARE     ®  *\\\
//////****************************************************\\\
//////Developed By :- Saurabh Khatri & Nikhil Jha            \\\
//////                XI C                                   \\\
//////                Greenway Modern Sr. Sec. School        \\\
//////                Dilshad Garden                         \\\
//////                Delhi-95                               \\\
//////e-mail:- sk21393@gmail.com                             \\\
//////         jha.smartnicks.nikhil@gmail.com               \\\

/* HEADER FILES */ #include #include #include #include #include #include #include #include #include

/* STRUCTURE DEFINITIONS */

struct address /* STRUCTURE FOR ADDRESS */ { char hno[30]; char area[30]; char city[30]; char stat[30]; };

struct agn /* STRUCTURE FOR AGENT DETAILS */ { int code; char nam[80]; int age; address addagn; int polsld; //no. of policies sold float sal; //salary char categ[50]; //category }agnt[15];

struct cust /* STRUCTURE FOR CUSTOMER DETAILS */ { char nam[80]; int age; address addcust; char polbt[20]; //name of policy bought float sal; //salary int code; float polamt; int polterm; char mod_pay; float sa_pt_pa; //SA per thousand per annum float prem; //premium }custm[15];

struct fback /* STRUCTURE FOR FEEDBACK FORM */ { int age; char gndr; //gender char occp[20]; //occupation float inc; //income char a[12]; //ratings }fbk;

struct poldet /* STRUCTURE FOR POLICY T&C */ { char nam[20]; int minagemat; int maxagemat; int maxmatage; int minpolt; int maxpolt; float minsumass; char maxsumass[10]; char modeall[25]; float acci_ben; float CI; int femliv; char agepro[40]; char nonmed_gen[5]; char nonmed_spe[5]; char termrideroptn[4]; char crtcalilnesridr[4]; float sa_pt_patrm1_ag1;//SA per thousand per annum float sa_pt_patrm1_ag2; float sa_pt_patrm2_ag1; float sa_pt_patrm2_ag2; };

/* STORING POLICY DETAILS */

poldet endow={“ENDOWMENT POLICY”,12,65,75,5,55,50000.00,“No Limit”,“All”,1.00,

      7.26,2,"Birth Certificate / Board Certificate","Yes","Yes",
      "Yes","Yes",72.00,73.35,35.80,40.00};

poldet monbak={“MONEY BACK POLICY”,13,50,70,20,55,50000.00,“No Limit”,“All”,

      2.00,6.57,2,"Birth Certificate / Board Certificate","Yes","Yes",
      "Yes","Yes",65.35,53.45,71.85,61.55};

poldet jeevkish={“JEEVAN KISHORE”,0,12,45,15,35,50000.00,“40 Lacs”,“All”,1.50,

      6.52,2,"Birth Certificate / Board Certificate","N.A.","N.A.",
      "No","No",49.15,29.25,49.15,29.25};

poldet jeevannd={“JEEVAN ANAND”,18,65,75,5,57,100000.00,“No Limit”,

	"All Except Single",1.5,6.45,2,"Birth Certificate / Board Certificate",
	"Yes","Yes","No","Yes",50.95,39.05,155.75,86.25};

poldet jeevsurbh={“JEEVAN SURABHI”,14,50,70,15,25,50000.00,“No Limit”,“All”,

	 1.00,6.11,2,"Birth Certificate / Board Certificate","Yes",
	 "Yes","No","No",108.80,91.30,123.00,112.80};

/* FUNCTION PROTOTYPING */

/* FUNCTION FOR DISPLAYING MAIN MENU */

void welcome();//display welcome page void mainmen();//display main menu

/* CUSTOMER FUNCTIONS */

void cusmen();//display customer menu void newpol();//display new policies void tnccus(poldet pol);//display details of policies void newcus(poldet pol);//new customer data input float premcalc(cust custm,poldet pol);//premium calculation void oldcus();//display old customer’s previous policy details void feed();//display feedback form char feedval();//input & test the ratings of feedback form

/* AGENT FUNCTIONS */

void agnmen();//display agent menu void newagn();//new agent data input void oldagn();//old agent details void tncagn();//display terms & conditions for agents

/* MAIN FUNCTION */ void main() { cout.setf(ios::fixed); cout.setf(ios::showpoint); cout< 0;x--)

cout< <"  ";

cout&lt;&lt;" "&lt;<i>0;x--)

{

gotoxy(x,49);
cout&lt; &lt;"";
delay(5);

}

gotoxy(80,49); cout&lt;&lt;”“;

for(y;y&gt;0;y--) {

gotoxy(80,y);
cout&lt; &lt;"\n";
delay(5);

}

gotoxy(10,10); puts(”*********************** W E L C O M E *********************** “); gotoxy(18,16); puts(“L . I . C . D A T A B A S E S O F T W A R E”); gotoxy(38,22); puts(” D E V E L O P E D B Y : “); gotoxy(38,26); puts(” Saurabh Khatri & Nikhil Jha “); gotoxy(38,28); puts(” XI C”); gotoxy(38,30); puts(” Greenway Modern Sr.Sec. School”); gotoxy(38,32); puts(” Dilshad Garden”); gotoxy(38,34); puts(” DELHI-95”); gotoxy(38,40); puts(” *** PRESS ANY KEY TO CONTINUE ***“);

getch(); mainmen(); }

/* MAIN MENU */ void mainmen() { char a; clrscr(); cout&lt;&lt;”\n”;

for(int x=0;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(int y=1;y&lt;16;y++) {

delay(5);
gotoxy(0,y);
cout&lt;&lt;"\n";

}

gotoxy(25,5); cout&lt;&lt;“WELCOME TO LIFE INSURANCE COMPANY”; gotoxy(25,6); cout&lt;&lt;”$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$“; gotoxy(36,9); cout&lt;&lt;“L.I.C. MENU”; gotoxy(36,12); cout&lt;&lt;“C=CUSTOMER”; gotoxy(36,14); cout&lt;&lt;“A=AGENT”; gotoxy(36,16); cout&lt;&lt;“X=EXIT”;

cout&lt;&lt;”\n\n”; for(x=1;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(y=2;y&lt;19;y++) {

delay(5);
gotoxy(80,y);
cout&lt;&lt;"";

}

gotoxy(30,20); cout&lt;&lt;“Please enter your choice : “; x:a=getch(); switch(a)

{
case 'c':
case 'C':cusmen();
	 break;
case 'a':
case 'A':agnmen();
	 break;
case 'x':
case 'X':feed();
	 break;
default:goto x;
}

}

/* CUSTOMER MENU */ void cusmen() { char b; x:clrscr();

cout&lt;&lt;”\n”; for(int x=0;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(int y=1;y&lt;16;y++) {

delay(5);
gotoxy(0,y);
cout&lt;&lt;"\n";

}

gotoxy(36,5); cout&lt;&lt;“CUSTOMER MENU”; gotoxy(36,6); cout&lt;&lt;”$$$$$$$$$$$$$“; gotoxy(36,9); cout&lt;&lt;“O=OLD CUSTOMER”; gotoxy(36,11); cout&lt;&lt;“P=POLICIES”; gotoxy(36,13); cout&lt;&lt;“B=BACK”; gotoxy(36,15); cout&lt;&lt;“X=EXIT”;

cout&lt;&lt;”\n\n”; for(x=0;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(y=2;y&lt;18;y++) {

gotoxy(80,y);
delay(5);
cout&lt;&lt;"";

}

gotoxy(30,19); cout&lt;&lt;“Please enter your choice : “; y:b=getch();

switch(b)

{
case 'o':
case 'O':oldcus();
	 break;
case 'p':
case 'P':newpol();
	 break;
case 'b':
case 'B':mainmen();
	 break;
case 'x':
case 'X':feed();
	 break;
default:goto y;
}

}

/* NEW POLICY */ void newpol() { char inp; clrscr();

cout&lt;&lt;”\n”;

for(int x=0;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(int y=1;y&lt;17;y++) {

delay(5);
gotoxy(0,y);
cout&lt;&lt;"\n";

}

gotoxy(30,5); cout&lt;&lt;“LIFE INSURANCE POLICIES”; gotoxy(30,6); cout&lt;&lt;”$$$$$$$$$$$$$$$$$$$$$$$“; gotoxy(31,9); cout&lt;&lt;“1. Endowment Policy”; gotoxy(31,11); cout&lt;&lt;“2. Money Back Policy”; gotoxy(31,13); cout&lt;&lt;“3. Jeevan Kishore”; gotoxy(31,15); cout&lt;&lt;“4. Jeevan Anand”; gotoxy(31,17); cout&lt;&lt;“5. Jeevan Surabhi”;

cout&lt;&lt;”\n\n”; for(x=0;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(y=2;y&lt;19;y++) {

delay(5);
gotoxy(80,y);
cout&lt;&lt;"";

}

gotoxy(31,21); cout&lt;&lt;“B=Back”; gotoxy(31,23); cout&lt;&lt;“X=Exit”; gotoxy(31,25); cout&lt;&lt;“Please enter your choice : “; x:inp=getch();

switch(inp) { case ‘1’:tnccus(endow);

case ‘2’:tnccus(monbak);

case ‘3’:tnccus(jeevkish);

case ‘4’:tnccus(jeevannd);

case ‘5’:tnccus(jeevsurbh);

case ‘b’: case ‘B’:cusmen();

case ‘x’: case ‘X’:exit(0);

default:goto x; } }

/* POLICY DETAILS */ void tnccus(poldet pol) { char in; clrscr();

cout&lt;&lt;”\n”; for(int x=0;x&lt;80;x++) {

delay(5);
cout&lt;&lt;"";

}

for(int y=1;y&lt;32;y++) {

delay(5);
gotoxy(0,y);
cout&lt;&lt;"\n";

}

gotoxy(25,5); cout&lt;&lt;“TERMS & CONDITIONS FOR “; puts(pol.nam); gotoxy(12,8); cout&lt;&lt;“¯ Min./Max. age at entry : “; cout&lt;&gt;custm[i].age; if(custm[i].agepol.maxagemat) {

gotoxy(20,40);
cout&lt; &lt;"Age must be between "&lt;&gt;custm[i].sal;          //is JEEVAN KISHORE

g:gotoxy(43,24); for(j=0;j&lt;20;j++)

cout&lt; &lt;" ";

gotoxy(43,24); cin&gt;&gt;custm[i].polamt; if(custm[i].polamt&gt;custm[i].polterm; if((custm[i].poltermpol.maxpolt)) {

gotoxy(20,40);
cout&lt; &lt;"Policy term must be between "&lt;(pol.minagemat+pol.maxagemat)/2)
	custm.sa_pt_pa=pol.sa_pt_patrm2_ag1;

}

if(custm.age&gt;=(pol.minagemat+pol.maxagemat)/2) {

if(custm.polterm&lt; =(pol.minpolt+pol.maxpolt)/2)
	custm.sa_pt_pa=pol.sa_pt_patrm1_ag2;
if(custm.polterm&gt;(pol.minpolt+pol.maxpolt)/2)
	custm.sa_pt_pa=pol.sa_pt_patrm2_ag2;

}

if(custm.mod_pay==‘h’||custm.mod_pay==‘H’)

custm.sa_pt_pa*=0.985;

else if(custm.mod_pay==‘y’||custm.mod_pay==‘Y’)

custm.sa_pt_pa*=0.97;

if(custm.polamt&gt;pol.minsumass&&custm.polamt&lt; =(2*pol.minsumass))

custm.sa_pt_pa-=1;

if(custm.polamt&gt;(2*pol.minsumass))

custm.sa_pt_pa-=2;

a=(custm.sa_pt_pa)*(custm.polamt)/1000;

return a; }

/* OLD CUSTOMER’S DETAILS */ void oldcus() { int flag=0; clrscr();

gotoxy(25,6); cout&lt; &lt;“PLEASE ENTER CUSTOMER CODE : “; int pn; cin&gt;&gt;pn;

for(int i=0;i&lt;15;i++) {

if(pn==custm[i].code)//check the customer code
{
	flag=1;
	gotoxy(25,10);
	cout&lt; &lt;"¯ NAME : ";
	puts(custm[i].nam);
	gotoxy(25,12);
	cout&lt;&lt;"¯ AGE : "&lt;&gt;agnt[i].age;

if(agnt[i].age&lt;18) {

gotoxy(20,40);
cout&lt; &lt;"Age must be more than 18";
gotoxy(33,10);
for(o=0;o&lt;4;o++)
	cout&lt;&lt;" ";
goto y;

} else {

gotoxy(20,40);
for(o=0;o&lt;35;o++)
	cout&lt;&lt;" ";

}

a:gotoxy(43,14); gets(agnt[i].addagn.hno); if(strcmp(agnt[i].addagn.hno,”\0”)==0)

goto a;

b:gotoxy(38,16); gets(agnt[i].addagn.area); if(strcmp(agnt[i].addagn.area,“\0”)==0)

goto b;

c:gotoxy(38,18); gets(agnt[i].addagn.city); if(strcmp(agnt[i].addagn.city,“\0”)==0)

goto c;

d:gotoxy(39,20); gets(agnt[i].addagn.stat); if(strcmp(agnt[i].addagn.stat,“\0”)==0)

goto d;

gotoxy(36,22); cin&gt;&gt;agnt[i].sal;

gotoxy(43,24); cin&gt;&gt;agnt[i].polsld;

if((agnt[i].polsld)&gt;0&&(agnt[i].polsld)&lt;1000) //categorise the agent

strcpy(agnt[i].categ,"BRANCH MANAGER CLUB MEMBER");

else if((agnt[i].polsld)&gt;999&&(agnt[i].polsld)&lt;2000)

strcpy(agnt[i].categ,"DIVISIONAL MANAGER CLUB MEMBER");

else if((agnt[i].polsld)&gt;1999&&(agnt[i].polsld)&lt;3000)

strcpy(agnt[i].categ,"ZONAL MANAGER CLUB MEMBER");

else if((agnt[i].polsld)&gt;2999)

strcpy(agnt[i].categ,"CHAIRMAN CLUB MEMBER");

agnt[i].code=fabs(100+(20*agnt[i].age)-(80*i)); //create unique code

clrscr(); gotoxy(34,3); cout&lt; &lt;“Your details are : “; gotoxy(25,6); cout&lt;&lt;“¯ NAME : “; puts(agnt[i].nam); gotoxy(25,8); cout&lt;&lt;“¯ AGE : “&lt;&gt;pn;

for(int i=0;i&lt;15;i++) {

if(pn==agnt[i].code)//check agent code
{
	flag=1;
	gotoxy(25,9);
	cout&lt; &lt;"¯ NAME : ";
	cout&lt;&gt;fbk.age;

gotoxy(21,10); b:fbk.gndr=getch(); switch(fbk.gndr) {

case 'm':
case 'M':

case 'f':
case 'F':cout&lt; &gt;fbk.inc;

gotoxy(57,23); fbk.a[0]=feedval();

gotoxy(49,25); fbk.a[1]=feedval();

gotoxy(56,27); fbk.a[2]=feedval();

gotoxy(55,29); fbk.a[3]=feedval();

gotoxy(56,31); fbk.a[4]=feedval();

gotoxy(66,33); fbk.a[5]=feedval();

gotoxy(45,35); fbk.a[6]=feedval();

gotoxy(45,37); fbk.a[7]=feedval();

gotoxy(47,39); fbk.a[8]=feedval();

gotoxy(42,41); fbk.a[9]=feedval();

gotoxy(45,43); fbk.a[10]=feedval();

gotoxy(42,45); fbk.a[11]=feedval();

gotoxy(36,47); for(int x=0;x&lt;9;x++) {

cout&lt; '0'&amp;&amp;x&lt; '8')
cout&lt;</i></pre>
Share: