Hangman Game
The source code for program that can check if a numbers Palindrome is given below, copy it in note pad and save it as “.cpp”. Then use suitable compiler to compile it.
/* Program Name : Hang Man Game
Coded by : Navaneeth pk
*
* Copyright 2011 techstream.org < techstream.org[at]gmail.com >
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include
#include
#include
#include
#include
#include
void main() {
class game {
char word[50];
int chance_max;
int chances_total;
int chance_lost;
char letter[1];
char correct[50];
int i,j,count,ij;
char wordtemp[50];
char correct_n[50];
char opt;
int res;
int cc;
public : void about_game()
{
cout<<"nn";
cout<>opt;
switch(opt) {
case 'y': enter_data();
break;
case 'n': exit(0);
break;
default : cout<<"Invalid Option n";
}
}
public : void enter_data() {
clrscr();
cout<<"nnnEnter the word/phrase : ";
gets(word);
cout<>chance_max;
play();
}
void play() {
clrscr();
cout<>letter[0];
cout<