8.40 Lab 8e: BankBalance
Introduction
For this lab, you will use a do-while loop to complete the
task.
A do-while loop has this basic structure:
/* variable initializations */
do{
/* statements to be performed multiple times */
/* make sure the variable that the stop condition relies on is changed inside the loop. */
}
while (/*stop condition*/);
Despite the structure of the do-while loop being different than
that of a for loop and a while loop, the concept...