В чем ошибка? Пишет: Встречено 'else', а ожидалось ';'
Что делать ведь перед 'else' нельзя ставить ';'

Program BlockAlgorithm;

var
x,y : integer;

begin

writeln('Start');
writeln('Imput x ');
read(x);
writeln('Imput y ');
read(y);

if x>y then
x := x-y;
y := x+y;
writeln(x, y);
writeln(x)
else
if x y := y-x
x := y+x
writeln(x, y)

end.
Язык Pascal
P.S я новичек ничерта не понимаю
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.