does anyone have a program like this thats based off this game if so can you share the whole programe with me?
Sounds fun to build.... I will, though will it be a REAL game or a just for fun console game?
Last edited on
just a fun type consol game honstly nothing overboard just a simple here is the question and if your right you get money
1 2 3 4 5 6 7 8 9 10 11 12
|
#include <iostream>
using std::cout; using std::cin; using std::endl;
int main()
{
cout << "Question 1: blah blah blah" << endl;
cout << "A. Answer1\tB. Answer2\nC. Answer3\tD. Answer4" << endl;
char answer;
cin >> answer;
if (answer == 'a') cout << "you win" << endl;
else cout << "you loose" << endl;
}
|
Last edited on