Какая из команд записана правильно? 1. if (x=0) аnd (a>0) then begin b:=0;c:=x else b:=x; end;
2. if (x=0) and (a>0) then begin b:=0;c:=x; end; else b:=x;
3. if (x=0) and (a>0) then b:=0;c==x; else b:=x;
4. if (x=0) and (a>0) then begin b:=0; c:=x; end else b:=x;