Write the pseudocode for problem below.
Prompt the user to input a temperature in the Fahrenheit scale. Then display its equivalent in the Celsius scale. Repeat until a temperature of 9999 is entered.
```
OUTPUT "Enter a temperature in the Fahrenheit scale."
INPUT f degree
DO UNTIL f degree = 9999
LET c_degree = (5/9) * (f degree — 32)
OUTPUT "The corresponding temperature in the Celsius scale is ", c_degree OUTPUT "Enter a temperature in the Fahrenheit scale."
INPUT f degree
LOOP
```
You might also like to view...
Which of the following is NOT an example of industrial espionage?
a. Details on a competitor's new project b. A list of a competitor's clients c. Denial-of-service attack d. None of the above
Answer the following statements true (T) or false (F)
1. Symmetric multiprocessors (SMPs) are one of the earliest, and still the most common, example of parallel organization. 2. The term SMP refers to a computer hardware architecture and also to the operating system behavior that reflects that architecture. 3. An attractive feature of an SMP is that the existence of multiple processors is transparent to the user. 4. The main drawback of the bus organization is reliability. 5. An SMP operating system manages processor and other computer resources so that the user perceives a single operating system controlling system resources.