Simple food Ordering system c++

Dec 16, 2016 at 6:37am
develop a simple food ordering system eg a menu of three cuisine....in c++. thank you for anticipated help brothers and sister...sorry for asking to many...help hellllp
Dec 16, 2016 at 10:24am
closed account (48T7M4Gy)
https://www.kfc.com.au/online-ordering

There you go ... enjoy :)
Dec 16, 2016 at 11:54am
you are sick
Dec 16, 2016 at 12:10pm
closed account (48T7M4Gy)
Not me - I don't eat kfc - But can I take your order, Sir?

a menu of three cuisine
- No problem Sir, that would be a Coke, burger and fries. Thank you Sir, that will be $7.85.

No? Perhaps http://www.subway.com/en-us/menunutrition/menu/orderonline
Dec 16, 2016 at 12:26pm
OP: I think you've extinguished any remaining goodwill after this ...
http://www.cplusplus.com/forum/general/204707/
and this ...
http://www.cplusplus.com/forum/general/204709/
Luck!
Dec 16, 2016 at 12:33pm
funniest post of the day :D

@bodx

We can only help you when you show us some effort from your side, this is a menu start with a simple do-while loop and if you have any doubt simply ask, we'll be glad to help

Sincerely study
Dec 16, 2016 at 12:43pm
am a novice....pleae help...have exams tomorrow...
Dec 16, 2016 at 12:43pm
i like your pun by the way @kemort...lol
Dec 16, 2016 at 12:52pm
closed account (48T7M4Gy)
I can't help myself. Here's start, something like this. Need to fillout and complete the functions.

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
#include <iostream>

using namespace std; // saves time

void greeting();
int menu();
string get_upset()

int main()
{
   int selection = 0;
   
   greeting();
   while (cin >> selection && selection != 3)
   {
      menu();
   }
   place_order(selection);
   get_money();

   if(ask_about_fries())
      get_more_money();
   else
      cout << get_upset();

   return 0;
}

void greeting()
{
  cout << "Hi I'm bodybags. Whadya want? Select a number from the menu. Hurry up. I'm busy. :)" <<endl;
}

string get_upset()
{
   return "Mean-ass\n"
}

Last edited on Dec 16, 2016 at 1:29pm
Dec 16, 2016 at 1:50pm
hahahah! pls bro get serious...it is exams....helpppppp bruvvv. thanks
Dec 16, 2016 at 1:59pm
closed account (48T7M4Gy)
I am serious.

That is a framework for doing it based on what you wrote in your first post. Quite seriously, if you can't see how you can adapt/apply/use/modify or otherwise use that and incorporate the suggestion shadder made then, I hate to tell you, but you're in the wrong game.

I think we are just about done here though because you haven't contributed anything whatsoever ... no plan, no problem brief of any consequence, no pseudocode, no flow chart, no code ... zip.

Topic archived. No new replies allowed.