Use the loop variation given in problem to write a program that inputs values into variables numi and num2, stores their difference in the variable diff, and outputs the result. End the loop when diff becomes zero. Assume that the value of variable diffis 99 before the loop starts.
LOOP UNTIL
```
DO
INPUT num1, num2
LET diff = numl — num2
LOOP UNTIL diff = 0
```
Computer Science & Information Technology
You might also like to view...
You can specify a sound that will play when an action button is clicked
Indicate whether the statement is true or false
Computer Science & Information Technology
Importing is the process of inserting external data, data created or stored in another format, into the current application
Indicate whether the statement is true or false
Computer Science & Information Technology