Тема: Не працює код
Чо ця фігня не працює? Чи може я сліпий??
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
//Проблема десь тут
bool gameOver;
const int width = 20;
const int height = 20;
int x, y, fruitX, fruitY, score;
enum eDirection { STOP = O, LEFT, RIGHT, UP, DOWN };
eDirection dir;
//Проблема десь тут
void setup() {
gameOver = false;
dir = STOP;
x = wight/2;
y = height/2;
fruitX = rand() % wigth;
fruitY = rand() % height;
score = 0;
}
void draw() {
system("cls");
for (int i = 0; i < width; i++)
cout << "#";
cout << endl;
for (int i = 0; i < height; i++){
for (int j = 0, j < width, j++){
if(j==0 || j == width - 1){
cout << "#";
cout << " ";
}
cout << endl;
}
}
for (int i = 0; i < width; i++)
cout << "#";
cout << endl;
}
void inpud(){
}
void logic(){
}
int main(int argc, char** argv) {
system("chcp 1251 >> nul");
setlocale(LC_ALL, "UKR");
setup();
while (!gameOver){
draw();
inpud();
logic();
}
cout << endl << endl << endl << endl << endl << endl << endl << endl << endl;
system("pause");
return 0;
}