So I started this new program and I can't seem to get past the first step.
The menu choice option won't work. Any ideas?Code:#include <iostream> using namespace std; int main() { char Menu, Start, Recall, Exit,choice; cout <<"Hello, how are we today?" <<endl; cout <<"|===================|" <<endl; cout <<"| (M)enu |" <<endl; cout <<"| (S)tart |" <<endl; cout <<"| (R)ecall |" <<endl; cout <<"| (E)xit |" <<endl; cout <<"|______________________|" <<endl; cout <<"Please choose a destination" <<endl; cin >>choice; if (choice == Menu) { cout <<"You are in menu now!" <<endl; } system("pause"); return 0; }



LinkBack URL
About LinkBacks


