I fixed my program from the previous complaint and I got it to run. Now my problem is that it won't run correctly. Can you help me?
ANRCCC 0 Newbie Poster
//*Amanda Richardson
//*Cell Phone Bill
//*Due 2-18-05
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
char plan;
int weekday, weekend, text, overage_a, over_a, over_b, over_texta;
double over_day, over_enda, over_endb, over_texa, over_texb, total, grand_total, minutes_day, tax;
const double TAX=.03, BASE_PRICEA=39.95, BASE_PRICEB=19.95;
cout << "Enter the Plan type:";
cin >> plan;
if (plan == 'A')
{
BASE_PRICEA;
}
else
BASE_PRICEB;
cout << "Enter the number of weekday minutes used: ";
cin >> weekday;
overage_a = weekday - 250;
over_day = overage_a * 0.25;
minutes_day = weekday * 0.30;
if (plan == 'B')
cout << "Your Weekday minutes will cost: $" << minutes_day << endl;
else if (plan == 'A' && weekday > 250)
{
cout << "Went over weekday minutes by:" << overage_a << "minutes" << endl;
cout << "This will cost an extra: $" << over_day << endl;
}
else (plan == 'A' && weekday <= 250);
{
cout << "No weekday overages" << endl;
}
cout << "Enter the number of weekend minutes used:";
cin >> weekend;
over_a = weekend - 1000;
over_b = weekend - 200;
over_enda = over_a * 0.15;
over_endb = over_b * 0.30;
if (plan == 'B'&& weekend <= 200)
{
cout << "You did not go over yor weekend minutes" << endl;
}
else (plan == 'B' && weekend > 200);
{
cout << "You went over your weekend minutes by: " << over_b << "minutes" << endl;
cout << "This will cost you $" << over_endb << endl;
}
if (plan == 'A' && weekend <= 1000)
{
cout << "You did not go over your weekend minutes" << endl;
}
else (plan == 'A' && weekend > 1000);
{
cout << "You went over your weekend minutes by: " << over_a << "minutes" << endl;
cout << "This will cost you $ " << over_enda << endl;
}
cout << "Enter the number of text messages used:" << endl;
cin >> text;
over_texta = text - 250;
over_texa = over_texta * 0.10;
over_texb = text * 0.15;
if (plan == 'B')
cout << "Your text messasges cost: $" << over_texb << endl;
else if (plan == 'A' && text <= 250)
cout << "You did not go over your text minutes" << endl;
else (plan == 'A' && text > 250);
cout << "You went over your text messages by: " << over_texta << endl;
cout << "This will cost you: $" << over_texb << endl;
total = (BASE_PRICEA || BASE_PRICEB) + (over_day || minutes_day) + (over_enda || over_endb) + (over_texa || over_texb);
tax = total * TAX;
grand_total = total + tax;
cout << "Total: $" << total << endl;
cout << "Tax: $" << tax << endl;
cout << "Your Grand Total: $" << grand_total << endl;
system("pause");
return 0;
}
frrossk 2 Posting Whiz in Training
1. Don't post twice the same question.
2. You should have posted the code (it's not so big)
3. Some errors (not compiler, but logical errors):
if (plan == 'A')
{
BASE_PRICEA;
}
What's this??
else (plan == 'A' && weekday <= 250);
{
cout << "No weekday overages" << endl;
}
I think you forgot an if:
else if (plan == 'A' && weekday <= 250)
and, after if don't put a semicolon.
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.