#include<iostream>
using namespace std;
{
		int main()
		
		//declare variables
		char total amount = ' ';
		int rate = 0;
		double registrants = 0;

		//determine if registrant
		cout << "Are you a seminar registrant: (Y/N)";
		cin >> registrant;
		registrant = toupper(registrant);

		if (registrant == 'R')
		{
			//determine rate
			cout << "what is the rate? ";
			cin>> rate;
			if( rate > 80)
				rate = 85;
			else 
				fee = 70;
			//endif
		}
		else 
			fee = 75;
		//endif

		//display
		cout <<fixed <<set precision(2);
		cout << invalid error << rate << endl;

		system("pause");
		return 0;
}

Recommended Answers

All 2 Replies

You have your opening brace before int main() instead of after it

Please start your own thread next time instead of bumping one that is almost 6 years old.

You have your opening brace before int main() instead of after it

Please start your own thread next time instead of bumping one that is almost 6 years old.

sorry about that i'll be sure to start my OWN thread next time I'm kind of new to this thing so I DIDNT know.

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.