** помощь!!! Пишет что нельзя преобразовать тип function(maxValue: integer):integer к...

0 голосов
79 просмотров

На помощь!!!
Пишет что нельзя преобразовать тип function(maxValue: integer):integer к integer. Только подробно пожалуйста. 22 строка

program Game_UP;

uses graphABC;

type
point = record
x, y: integer;
end;

var
Main_heroes, Background, Platform: picture;
Left, Right, x, y, i, h: integer;
vx, vy: real;
platforms: array[1..10] of point;
game: boolean;

begin
window.Caption := 'UP!_v1.0';
setwindowsize(450, 720);
Main_heroes := picture.Create('data\Main_heroes.png');
Background := picture.Create('data\Background.jpg');
Platform := picture.Create('data\Platform.jpg');
x := 225;y := 360;
for i := 1 to 10 do
begin
platforms[i].x := random{450};
platforms[i].y := random{720};
end;

game := true;

while game do

begin
background.Draw{0,0};


end;





end.


Информатика (12 баллов) | 79 просмотров
Дан 1 ответ
0 голосов

Скобки в Random() должны быть круглыми. Да и в прочих местах тоже. Фигурные скобки - это признак комментария.

(2.0k баллов)