Question: In C++ Starting Code: include #include // DO NOT CHANGE CODE from here to line 11 void test_vars(double testMoney, bool testTrue) { assert(testMoney==250.25); assert(testTrue==false); }
In C++

Starting Code:
include
First add a comment describing what this code will do (simple one or two lines) Create (and assign) the following variables: Create a boolean variable called "isTrue" and set it to false Create a double variable called "money" and set it to 99999.99 Then create the following output: Print the words "money ="first Then print the variable "money" (followed by a space) Then print the variable "isTrue" without skipping to the next line. Finally re-assign and print "money": Re-assign "money" by setting it to 250.25 Print "money" on its own line Expected Output If the variables are correctly set then the automate test will work. If not it will stop the program with an error. money - 99999.99 false 250.25
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
