cout << "Enter the number of cars insured : " << endl;
cin >> num1;
cout << "Please enter the number of Driving Volations : " << endl;
cin >> num2;
cout << fixed << showpoint << setprecision(2);
if (age>25)
cout << "Premium Age Reduction after $100.00 deductible is : " << P - 100.00 << endl;
else if(age<25)
cout << " No age Reduction Discount. " <<endl;
if(GPA>=3.0)
cout << " Premium Reduction of $200.00 for good GPA is : " << P -200.00 << endl;
else if(GPA<3.0)
cout << "No GPA Reduction . " <<endl;
if (num1>1)
cout << "Multi Car discount with Premuim policy is : " << P - multi_car<< endl;
else if (num1<1)
cout << " There are no Multi Car Discounts for this customer."<<endl;
if (num2>1)
cout << "The increase for each Traffic Volation is 200.00 ." << endl;
if (num2== 1)
cout << " A 200.00 increase is added." << P + 200.00 <<endl;
if (num2 == 2)
cout << " A 400.00 increase is added." << P + 400.00 <<endl;
else if (num2 == 3)
cout << " A 600.00 increase is added." << P + 600.00 <<endl;
if (num2>3)
cout << " This Policy is cancelled "<< " "<< "Please call customer service. " << endl;
else if (num2<3)
P= P- multi_car;
cout << " Premium Policy Due is: " << P << endl;