Yeah, I started it. This is one of the first lines of code so that's why I don't really understand the <> sign. It's a simple assignment, but sometimes the professor writes the pseudocode like shit.
// Start
// Declarations
// num dollars
// output "Please enter the a whole dollar amount (no cents!). Input 0 to terminate: "
// input dollars
// while ( dollars <> 0)
// displayBills(dollars)
// output "Please enter the a whole dollar amount (no cents!). Input 0 to terminate: "
// input dollars
// endwhile
// Stop
Also, there's more code after the "Stop" pseudo, what would "stop" translate into c++ code?
Also, I want to add I don't want you to do the assignment, I just want to know what
<> and "stop" translates into.