- 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 (52.88 KiB) Viewed 52 times
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 -
-
- Posts: 43759
- Joined: Sat Aug 07, 2021 7:38 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 -
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