You found an exciting summer job for five weeks. It pays, say, $15.50 per hour. Suppose that the total tax you pay on your summer job income is 14%. After paying the taxes you spend 10 % of your net income to buy new clothes and other accessories for the next school year and 1% to buy school supplies. After buying clothes and school supplies, you use 25% of the remaining money to buy savings bonds. For each dollar you spend to buy savings bonds, your parents spend $0.50 to buy additional savings bonds for you. Write a program that prompts the user to enter the pay rate for an hour and the number of hours you worked each week. The program then outputs the following:
a. Your income before and after taxes from your summer job.
b. The money you spend on clothes and other accessories.
c. The money you spend on school supplies.
d. The money you spend to buy savings bonds.
e. The money your parents spend to buy additional savings bonds for you.
Sorry, we don't do homeworks for other people. If you're willing to put an effort, however, we'll also put our share in helping with specific questions regarding pieces of code that you wrote or are trying to write.
THOSE ARE VERY FUNNY LINES, WHERE DID YOU LEARN STRANGE STUFF LIKE THAT??????!!
C++ WON'T RECOGNIZE NUMBERS LIKE 14% EITHER, YOU'LL HAVE TO WRITE 0.14 INSTEAD!!!!
Edit: and while it's more of a style issue, you should declare variables when you need them for the first time instead of declaring a whole bunch of them at the beginning of a block.
@ OP: A word of etiquette: It is considered rude to write in all uppercase because it is the written equivalent of shouting. Also note that you should copy and paste here any error messages that your compiler throws at you for better troubleshooting. And finally, please use code tags:
[code]
1 2 3 4 5 6 7
#include <iostream>
int main()
{
std::wcout << L"Hello C++ World!! << std::endl;
}
//See how nice code looks like here, inside the code tags? Numbered and all!