Write complete C++ program to simulate a Magic 8-Ball, which is a fortune telling toy that displays a random response to a yes or no question. The program should prompt the user to ask a question and then display one of the responses randomly selected from the following array
Write complete C++
string magic8arr[] = {
"Yes, of course!",
"Without a doubt, yes.",
"You can count on it.",
"For sure!",
"Ask me later.",
"I'm not sure.",
"I can't tell you right now.",
"I'll tell you afterwards.",
"No way!",
"I don't think so.",
"Without a doubt, no.",
"The answer is clearly, NO."
};
Sample out is:
Enter a yes or no question: Will it rain today?
Ask me later.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images