Pseudocode that displays a table of whole number Celsius temperatures from 0 through 4 and converts each to their Fahrenheit equivalents. The output must use a loop to display the table. Must be written in pseudocode.

```
Start
// Program converts Celsius temperatures to Fahrenheit

# Declarations
Declare Integer celsius
Declare Float fahrenheit

# Loop to convert and display Celsius to Fahrenheit
For celsius from 0 to 4
Set fahrenheit = (celsius * 9/5) + 32
Display "Celsius: ", celsius, " Fahrenheit: ", fahrenheit
End For

End
```

Answer :

The pseudocode to convert Celsius to Fahrenheit using a table format involves starting with a loop structure that runs as long as C is less than or equal to 4. For each iteration of the loop, the pseudocode converts the current value of C into Fahrenheit using the formula (C * 9/5) + 32, prints the C and F values, and then increments the value of C.

This is a question related to writing a pseudocode for a program that will display a table of Celsius temperatures and convert them to the Fahrenheit equivalent. In the given pseudocode, we will be using two variables: 'C' for Celsius and 'F' for Fahrenheit.

Here's the pseudocode that meets the specifications you described:

Begin Program
// Assign initial value of C
Set C = 0
// Begin loop structure. Repeat the loop until C is equal to 4
While C <= 4 DO
// Formula to convert Celsius to Fahrenheit
Set F = (C * 9/5) + 32
// Print the value of C and F in a table like format
Print C, F
// Increment the value of C by 1 on each iteration
Increment C
End While
End Program

Learn more about Pseudocode here:

https://brainly.com/question/34475461

#SPJ1