Here is the pseudocode for that program:
Start
Print "Number", "Square"
For i = 4 to 9
Print i, i^2
Next i
End
The key steps are:
1. Print header labels
2. Use a for loop to iterate from 4 to 9
3. Inside the loop, print the current number and its square
4. End the for loop and program