What does this program display? Declare Integer x = 0 Declare Integer y = 1 If x > 0 Then Set y = y + 1 Else Set y = x -
Posted: Fri Jun 10, 2022 11:56 am
What does this program display? Declare Integer x = 0 Declare Integer y = 1 If x > 0 Then Set y = y + 1 Else Set y = x - 1 End If Display x -1 0