По приведенной программе вычислить значение переменной z при x=-5, y=-6
program main
integer x, y, z
write(*,*) 'Введите x и y'
read(*,*) x, y
if ( x >= 0 ) then
if ( y >= 0 ) then
z=1
else
z = 4
endif
else
if ( y >= 0 ) then
z=2
else
z = 3
endif
endif
write(*,1) z
1 format(i4)
end
ответ: z=