Modify the example program immediately preceding these problems so that an assignment statement would not be needed to initialize the variable n.
What will be an ideal response?
```
Replace LET n = 0 with INPUT n
Swap the position of the INPUT and OUTPUT statements inside the loop.
```
The modified program would look like:
```
INPUT n
DO WHILE n < 99
OUTPUT n
INPUT n
LOOP
```
Note: One consequence of this modification would be that the termination
value (a value of 99 or greater) would no longer be outputted.
You might also like to view...
Programming is necessary when the software needed to accomplish a task is not available.
Answer the following statement true (T) or false (F)
C++ is a language that is derived from the programming language C.
Answer the following statement true (T) or false (F)
Critical Thinking QuestionsCase 2-2You are working on the design plan for your new informational Web site. It is time to plan the navigational links for your site.To provide additional information to visitors at your site, you want to refer them to other relevant sites. To do this, you add ____ to a "Check This Out" page at your site. a. bookmarksc. external linksb. internal linksd. button links
What will be an ideal response?
If Hyperlinks view does not show links to and from the home page, click Site, click ____ Hyperlinks, then click Yes.
A. Recalculate B. Reset C. Remove D. Recreate