| Variable | bookName | author | price |
|---|---|---|---|
| [object Object] | [object Object] | [object Object] | [object Object] |
| [object Object] | [object Object] | [object Object] | [object Object] |
Write an algorithm using pseudo-code to display the name of the most expensive book. Compare the price of B1 and B2; output the book name of the most expensive book; output Neither if the books are the same price. The algorithm should work for any values stored in B1 and B2.
Your answer