Jothi's CAR Game in C++

A simple Car game for u&it is Active in 64 bit OS screen Size…



#include<iostream.h>
#include<conio.h>

char a[25][8];
int q1=24,q2=4;
void definition();
void definition()
{
for(int i=0;i<25;i++)
 for(int j=0;j<8;j++)
 { a[i][j]=32;

  }


a[1][5]=a[1][6]='*';
a[3][2]=a[3][3]=a[3][6]='*';
a[5][0]=a[5][1]=a[5][2]=a[5][4]=a[5][5]=a[5][7]='*';
a[7][4]='*';
a[9][2]=a[9][2]=a[9][3]=a[9][0]='*';
a[11][0]=a[11][5]='*';
a[13][1]=a[13][2]=a[13][4]=a[13][6]=a[13][7]='*';
a[15][0]=a[15][1]=a[15][4]=a[15][5]='*';
a[17][5]=a[17][6]='*';
a[19][2]=a[19][3]=a[19][6]='*';
a[21][0]=a[21][1]=a[21][2]=a[21][4]=a[21][5]=a[21][7]='*';
a[q1][q2]='#';

}

void main()
{
 int po=50,d;
 char c;
 clrscr();
 definition();

 while(po>0)
 {
  clrscr();
  cout<<"\n\t\tCar Game\n\tpower="<<po<<"\n\n";

  for(int i=0;i<25;i++)
  {cout<<"\t\t||";
   for(int j=0;j<8;j++)
    cout<<a[i][j];
   cout<<"||\n";
  }
  c=getch();
  if((c=='4')||(c=='8')||(c=='6')||(c=='2'))
  {
   if(c=='4')
   {
    if((a[q1][q2-1]==32)&&(q2-1>=0))
    {
     a[q1][q2]=32;
     a[q1][--q2]='#';
    }
    else
     po=po-5;
   }
   if(c=='6')
   {
    if((a[q1][q2+1]==32)&&(q2+1<=7))
    {
     a[q1][q2]=32;
     a[q1][++q2]='#';
    }
    else
     po=po-5;
   }
   if(c=='8')
   {
    if((a[q1-1][q2]==32)&&(q1-1>=0))
    {
     a[q1][q2]=32;
     a[--q1][q2]='#';
    }
    else
     po=po-5;
   }
   if(c=='2')
   {
    if((a[q1+1][q2]==32)&&(q1+1<=24))
    {
     a[q1][q2]=32;
     a[++q1][q2]='#';
    }
    else
     po=po-5;
   }
  }
 }
 getch();

}

Co.,Sponsered by.,
Any Queries u need to contact any of the Above 1ly…

All The Best…

No comments:

Post a Comment