revenue and then multiplying the
result by 100
9. display total revenue, individual
b.
individual fee dual fee family fee individual memberships dual memberships
99 175 225 50 75
family memberships individual revenue dual revenue family revenue total revenue
150 4950 13125 33750 51825
265 3465 26250 59625 89340
individual percentage dual percentage family percentage
c. (second part)
INDIVIDUAL_FEE DUAL_FEE FAMILY_FEE individual dual
99 175 225 0 0
50 75
99 175 225 0 0
35 150
family individualRev dualRev familyRev totalRev
0 0 0 0 0
individualPercent dualPercent familyPercent
0.0 0.0 0.0
16. See the Advanced16.cpp file, which is contained in either the Cpp8\Chap04\Advanced16 Project-IM folder
(Microsoft) or the Cpp8\Chap04 folder (non-Microsoft). The total appears as $504.00 rather than $504.01
17. See the SwatTheBugs17.cpp file, which is contained in either the Cpp8\Chap04\SwatTheBugs17 Project-
IM folder (Microsoft) or the Cpp8\Chap04 folder (non-Microsoft). To debug the program, change the
temp =+ 1.5; statement to either temp += 1.5; or temp = temp + 1.5;.