#include #include using namespace std; const int width = 80; const int height = 20; bool gameover; const int snakeX = width/2; const int snakeY = height/2; void start(){ gameover=false; } void draw(){ //Change "clear" to "cls" if compiling for Windows system("clear"); for(int i=0; i