Car Wash program. Any ideas?

I am creating a car wash program and so far this is what I have come up with. I think my program looks pretty neat and organized but it is lacking as far as content is concerned.

I need ideas of what I can add to my program to make it more interesting. Because what I have right now isn't going to cut it. Nothing too advanced, I am still very new to all of this. I just need ideas of things I can add to the car wash. I never really use car washes so I'm a bit clueless.

Thank you in advance.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <iostream>
#include <iomanip>
using namespace std;

char choice;

int main()
{
        // Displays a menu
        cout << "\n\t\tWelcome to the Soaps N' Suds Car Wash!\n\n";

        // Grabs user choice
        cout << "\nWhich wash would you like?\n\n";
        cout << left << setw(20) << "Basic" << right << setw(10) << "$5.00\n\n";
        cout << left << setw(20) << "Premium" << right << setw(10) << "$10.00\n\n";
        cout << left << setw(20) << "Deluxe" << right << setw(10) << "$15.00\n\n";
        cout << "Exit." << endl;
        cin >> choice;

            switch (choice)
            {
                case 'B': case 'b':
                        cout << "\n\nThis option includes our basic soft cloth wash.\n";
                        cout << "\nYour vehicle is now nice and clean.\n";
                        cout << "\nYour total has been added to the receipt.\n\n";

                        cout << "\nThank you for using the Soaps N' Suds Car Wash!\n";
                        break;

                case 'P': case 'p':
                        cout << "\n\nThis wash leaves your vehicle sparkling clean.\n";
                        cout << "\nOur special coating is included for extra shine.\n";
                        cout << "\nYour total has been added to the receipt.\n\n";

                        cout << "\n\nThank you for using the Soaps N' Suds Car Wash! :)\n";
                        break;

                case 'D': case 'd':
                        cout << "\n\nThis option is our very best wash. It includes our special coating and wax.\n";
                        cout << "\nYou now have the cleanest and shiniest car in town!\n";
                        cout << "\nYour total has been added to the receipt.\n\n";

                        cout << "\n\nThank you for using the Soaps N' Suds Car Wash! :)\n";
                        break;

                case 'E': case 'e':
                        cout << "\nThank you please come again.\n";
            }

    return 0;
}
Last edited on
You could add options specific to certain wash. Like extra drying or the possibility to purchase another wash at a discounted price.

Anything is possible really.
Topic archived. No new replies allowed.