# include <iostream>
usingname std;
bool gameOwer
const int width=200;
const int hight=200;
int x, y, fruitX, fruitY, score;
enum eDirection (STOP=0, LEFT, RIGHT, UP, DOWN);
eDirection dir;
void Setup ()
{
gameOwer=false;
x=width/2;
y=hight/2;
fruitX= rand () % width;
fruitY= rand () % hight;
score=0
}
void Draw ()
{
system ( "cls" );
for (int i=0; i<width; i++)
cout <<"#";
couy <<endl;
for (int i=0; i<hight; i++)
{ for (int j=0; j==width; j++)
{ if ( j==0 || j== width -1 )
cout <<"#";
xout <<" ";
}
}
for (int i=0; i<width; i++)
cout <<"#";
couy <<endl;
}
void Input () {
}
void Logic () {
}
int main () {
Setup ();
while (!gameOwer){
Draw();
Input();
Logic();
}
return 0;
}