This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
cs-142:cougar-cash [2015/05/11 14:51] cs142ta |
cs-142:cougar-cash [2015/05/12 13:11] (current) cs142ta |
||
---|---|---|---|
Line 8: | Line 8: | ||
==Solution== | ==Solution== | ||
<code cpp> | <code cpp> | ||
+ | /* | ||
+ | Test Case 1: | ||
+ | Input: 8.50 (input less than initial balance) | ||
+ | Output: balance is 1.50 | ||
+ | Actual: balance is 1.50 | ||
+ | |||
+ | Test Case 2: | ||
+ | Input: 15.00 (input greater than initial balance) | ||
+ | Output: balance is 0, owes 5.00 | ||
+ | Actual: balance is 0, owes 5.00 | ||
+ | |||
+ | Test Case 3: | ||
+ | Input: 0 (border case) | ||
+ | Output: balance is 10 | ||
+ | Actual: balance is 10 | ||
+ | */ | ||
+ | |||
#include <iostream> | #include <iostream> | ||
#include <iomanip> | #include <iomanip> |