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.

DO UNTIL


```
DO UNTIL diff = 0
INPUT numi, num2
LET diff = numl num2
LOOP
```

Computer Science & Information Technology

You might also like to view...

Access can be used in business to ________ complete databases or to ________ data from tables contained in RDBMS

Fill in the blank(s) with correct word

Computer Science & Information Technology

The ________ is located at the bottom of the window in Office 2010 and contains file information

Fill in the blank(s) with correct word

Computer Science & Information Technology

By default, Normal styles are applied to any text you type.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which function will return the intersection of a specific row and column?

A) INDEX B) MATCH C) VLOOKUP D) HLOOKUP

Computer Science & Information Technology