cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
I need a program that will....just read
I need a program that will....just read and youll see.
Jul 9, 2013 at 1:31am UTC
EliteGamesIndustries
(81)
Ok, can someone tell me how to like in the menu I am making I can press the options section is there a way in options lets say contact us section is inside of the option section then how can I open contact us? Got a code or something? Thanks
Jul 9, 2013 at 2:43am UTC
sweezy
(20)
All I know of is writing one HUGE if/else
and then
IF
they select
2
, they can 'Contact you' which will be like
cin >> input
if (input == 2)
{
cout << "Our phone number is 111-1111" << endl;
cout << "Our business hours are ... " << endl;
cout << "Our E-mail is..." << endl;
}
Jul 9, 2013 at 2:59am UTC
EliteGamesIndustries
(81)
Could you tell me what could to put in the options though to make the contact us show?
Topic archived. No new replies allowed.