I am new to the Forum. I'm a good programmer, best in class, not to brag, but I have never actually created a game. I would like to make a hangman game. I've got
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <cstdlib>
#include <iostream>
usingnamespace std;
int main()
{
string words[]={cat, dog, mom, dad, grandma, grandpa, everything, elephant} ;
srand((unsigned)time(0)) ;
int pickword=rand()%8+1 ;
switch (pickword)
{
case 1:
First, you probably shouldn't add one to your pickword variable. This means its range would be from 1-8, instead of 0-7 which you want (I assume you would use pickword as an index for the array of strings). Next, a (#include <string>) statement would help, since string information is in that header. From here on, I don't want to spoil anything for you, but I would say you should ask the user for input, evaluating that input to see if it is in the word that was picked, and maybe set a limit for how many guesses there are. Good luck!