I'm trying to run this program. It compiles as it is but I can't get equations to work, display amount is not right. I'm just really unsure about all of it.
Program is suppose to get number of adult, child movie tickets, if they have a discount coupon, what typr discount coupon, calculate amount, and display all info in a box.
/*
IF
Write a program that will calculate a customer's purchase amount
for movie tickets.
The user should be prompted for the amount of adult movie tickets
they would like to purchase, the amount of child movie tickets
that they would like to purchase, and whether or not they have a
discount coupon.
If the user has a discount coupon, determine if it is for an adult
movie ticket ("adult") or for child movie ticket ("child").
Adult movie tickets cost 10.50 each, while child movie tickets
cost 5.00 each.
The discount coupon (if any) should be subtracted from the purchase
amount.
Calculate and display the overall purchase amount with two digits after
the decimal point.
*/
cout << "Enter the number of adult movie tickets that are being purchased: ";
cin >> numAdtTix;
//get the number of children's movie tickets
cout << "Enter the amount of child tickets that are being purchased: ";
cin >> numChdTix;
//ask if the user has a discount coupon
cout << "Do you have a discount coupon (Y for yes)? ";
cin >> haveDiscount;
//if the user has a discount coupon
// ask the user for the discount coupon type
cout << "Is this discount for an adult or child's ticket (A for adult or C for child)? ";
cin >> DiscountType;
// if the discount coupon is "adult"
// discount coupon is 10.50
// else
// if the discount coupon is "child"
// discount coupon is 5.00
// else
// error message for bad discout type
// endif
// endif
//endif
Line 87 and 94? Can you post your final code? And put comment in lines you get error. And please please please please use code tags for posting code.[ code ] [ /code ] (without spaces)
And again, use == for compare( if( discountType == "A" )
Use = for assigning ( discountCoup = 5 )
You have a great help tolga gerekci! It works now. Just one more question if you don't mind....When program asks the user if they have a discount, when response is Y it goes on and asks what kind. If user says N I would like it to skip asking which type and go straight to the total. I assume I would need if/else statement in there as well (lines 33-35).
Write a program that will calculate a customer's purchase amount
for movie tickets.
The user should be prompted for the amount of adult movie tickets
they would like to purchase, the amount of child movie tickets
that they would like to purchase, and whether or not they have a
discount coupon.
If the user has a discount coupon, determine if it is for an adult
movie ticket ("adult") or for child movie ticket ("child").
Adult movie tickets cost 10.50 each, while child movie tickets
cost 5.00 each.
The discount coupon (if any) should be subtracted from the purchase
amount.
Calculate and display the overall purchase amount with two digits after
the decimal point.
*/
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
cout << fixed << setprecision(0) << setw(3) << endl;
float numAdtTix, numChdTix, TotPurchase, DiscountCoup = 0;
string haveDiscount, DiscountType;
cout << setprecision(2) << fixed << endl;
//get the number of adult movie tickets
cout << "Enter the number of adult movie tickets that are being purchased: ";
cin >> numAdtTix;
//get the number of children's movie tickets
cout << "Enter the amount of child tickets that are being purchased: ";
cin >> numChdTix;
//ask if the user has a discount coupon
cout << "Do you have a discount coupon (Y for yes, N for no)? ";
cin >> haveDiscount;
//if the user has a discount coupon
// ask the user for the discount coupon type
cout << "Is this discount for an adult or child's ticket (A for adult or C for child)? ";
cin >> DiscountType;
// if the discount coupon is "adult"
// discount coupon is 10.50
// else
// if the discount coupon is "child"
// discount coupon is 5.00
// else
// error message for bad discout type
// endif
// endif
//endif
if ( DiscountType == "A" )
{
DiscountCoup = 10.50;
cout << "Discount: " << DiscountCoup << endl;
}
else
{
if ( DiscountType == "C" )
{
DiscountCoup = 5.00;
cout << "Discount: " << DiscountCoup << endl;
}
else
{
cout << DiscountCoup << "is an invalid coupon type" << endl;
}
}
//calculate the purchase amount
TotPurchase = (numAdtTix * 10.50) + (numChdTix * 5.00) - DiscountCoup;
cout << "Total Purchase: " << TotPurchase << endl;
return 0;
}
this is what I came up with .... any suggestions. I get error line 76 Y is not declared in scope, line 97 error expected primary-expression before else, and line 97 error expected ; before else. Above is original program and below is corrections I was trying to attempt
/*
IF
Write a program that will calculate a customer's purchase amount
for movie tickets.
The user should be prompted for the amount of adult movie tickets
they would like to purchase, the amount of child movie tickets
that they would like to purchase, and whether or not they have a
discount coupon.
If the user has a discount coupon, determine if it is for an adult
movie ticket ("adult") or for child movie ticket ("child").
Adult movie tickets cost 10.50 each, while child movie tickets
cost 5.00 each.
The discount coupon (if any) should be subtracted from the purchase
amount.
Calculate and display the overall purchase amount with two digits after
the decimal point.
*/
#include <iostream>
#include <iomanip>
#include <string>
usingnamespace std;
int main()
{
cout << fixed << setprecision(0) << setw(3) << endl;
float numAdtTix, numChdTix, TotPurchase, DiscountCoup = 0;
string haveDiscount, DiscountType;
cout << setprecision(2) << fixed << endl;
//get the number of adult movie tickets
cout << "Enter the number of adult movie tickets that are being purchased: ";
cin >> numAdtTix;
//get the number of children's movie tickets
cout << "Enter the amount of child tickets that are being purchased: ";
cin >> numChdTix;
//ask if the user has a discount coupon
//if the user has a discount coupon
// ask the user for the discount coupon type
// if the discount coupon is "adult"
// discount coupon is 10.50
// else
// if the discount coupon is "child"
// discount coupon is 5.00
// else
// error message for bad discout type
// endif
// endif
//endif
cout << "Do you have a discount coupon (Y for yes, N for no)? ";
cin >> haveDiscount;
if (haveDiscount == "Y")
{
haveDiscount = Y;
cout << "Is this discount for an adult or child's ticket (A for adult or C for child)? ";
cin >> DiscountType;
}
if ( DiscountType == "A" )
{
DiscountCoup = 10.50;
cout << "Discount: " << DiscountCoup << endl;
}
else
{
if ( DiscountType == "C" )
{
DiscountCoup = 5.00;
cout << "Discount: " << DiscountCoup << endl;
}
else
{
cout << DiscountCoup << "is an invalid coupon type" << endl;
}
}
else
{
if ( haveDiscount == "N" );
haveDiscount = N;
cout << "Total Purchase: " << TotPurchase << endl;
}
//calculate the purchase amount
TotPurchase = (numAdtTix * 10.50) + (numChdTix * 5.00) - DiscountCoup;
return 0;
}