Uses graphabc; var a:real; begin writeln('Введите число'); readln(a); if (a больше 0)and (a mod 2=0) then setwindowsize(500,500); setpencolor(clyellow); circle(250,250,100); floodfill(250,250,clorange); if a меньше 0 then cle...
Uses graphabc;
var
a:real;
begin
writeln('Введите число');
readln(a);
if
(a>0)and (a mod 2=0) then
setwindowsize(500,500);
setpencolor(clyellow);
circle(250,250,100);
floodfill(250,250,clorange);
if a<0 then
clearwindow;
rectangle(50,50,250,250);
else line (250,250,300,300);
end.
Встречено 'else', а ожидался оператор. Что делать? Что не так?
Ответ(ы) на вопрос:
Гость
var
a:real;
begin
writeln('Введите число');
readln(a);
if
(a>0)and (a mod 2=0) then
setwindowsize(500,500);
setpencolor(clyellow);
circle(250,250,100);
floodfill(250,250,clorange);
if a<0 then
begin
clearwindow;
rectangle(50,50,250,250);
end
else line (250,250,300,300);
end.
Не нашли ответ?
Похожие вопросы