C++ Project On Snake and Ladder Game Cbse Class 12th
C++ Project On Snake and Ladder Game Cbse Class 12th
PROJECT REPORT
ON
Akash
ACKNOWLEGMENT
I would like to express my special thanks of gratitude to my
teacher Mr. Vinod Sharma as well as our principal Ms.
Promila Kumari Sharma who gave me the golden
opportunity to do this wonderful project on Snake and
ladder game, which also helped me in doing a lot of
Research and i came to know about so many new things I
am really thankful to them.Secondly i would also like to
thank my parents and friends who helped me a lot in
finalizing this project within the limited time frame.
SOURCE CODE
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
#include<stdio.h>
#include<time.h>
draw_line(50,'=');
cout<<"\n\n\n\n\t\tSNAKE LADDER GAME\n\n\n\n";
draw_line(50,'=');
cout<<"\n\n\nEnter Name of player 1 :";
gets(player1name);
cout<<"\n\n\Enter Name of player 2 :";
gets(player2name);
while(player1 <= 100 && player2 <= 100)
{
board();
gamescore(player1name,player2name,player1,playe
r2);
cout<<"\n\n--->" <<player1name<<" Now your
Turn >>
Press any key to play ";
getch();
lastposition = player1;
play_dice(player1);
if(player1<lastposition)
cout<<"\n\aOops!! Snake found !! You are at
postion "<<player1<<"\n";
else if(player1>lastposition+6)
cout<<"\nGreat!! you got a ladder !! You are at
position "<<player1;
cout<<"\n\n--->"<<player2name<<" Now your
Turn >> Press any key to play ";
getch();
lastposition=player2;
play_dice(player2);
if(player2<lastposition)
cout<<"\n\n\aOops!! Snake found !! You are at
position "<<player2<<"\n";
else if(player2>lastposition+6)
cout<<"\n\nGreat!! you got a ladder !! You are
at position "<<player2<<"\n";
getch();
}
clrscr();
cout<<"\n\n\n";
draw_line(50,'+');
cout<<"\n\n\t\tRESULT\n\n";
draw_line(50,'+');
cout<<endl;
gamescore(player1name,player2name,player1,playe
r2);
cout<<"\n\n\n";
if(player1>=player2)
cout<<player1name<<" !! You are the winner of
the game\n\n";
else
cout<<player2name<<" !! You are the winner of
the game\n\n";
draw_line(50,'+');
getch();
}
void draw_line(int n,char ch)
{
for(int i=0;i<n;i++)
cout<<ch;
}
void board()
{
clrscr();
cout<<"\n\n";
draw_line(50,'-');
cout<<"\n\t\tSNAKE AT POSITION\n";
draw_line(50,'-');
cout<<"\n\tFrom 98 to 28 \n\tFrom 95 to 24\n\tFrom
92 to 51\n\tFrom 83 to 19\n\tFrom 73 to 1\n\tFrom 69
to 33\n\tFrom 64 to 36\n\tFrom 59 to 17\n\tFrom 55
to 7\n\tFrom 52 to 11\n\tFrom 48 to 9\n\tFrom 46 to
5\n\tFrom 44 to 22\n\n";
draw_line(50,'-');
cout<<"\n\t\t LADDER AT POSITION\n";
draw_line(50,'-');
cout<<"\n\tFrom 8 to 26\n\tFrom 21 to 82\n\tFrom
43 to 77\n\tFrom 50 to 91\n\tFrom 62 to 96\n\tFrom
66 to 87\n\tFrom 80 to 100\n";
draw_line(50,'-');
cout<<endl;
}
case 50 : score=91;break;
case 54 : score=93;break;
case 62 : score=96;break;
case 66 : score=87;break;
case 80 : score=100;
}
}
BIBLIOGRAPHY
PROJECT DISK