help

Write your question here.
Write a program which accepts an account balance and computes any service charge.
Balance Service Charge
< $300 $9
300 to < 700 $ 7
700 to <1000 $ 6
1000 or more $ 5

need help don't know where to start needs to be c++
Start with a program that prompts for the account balance, reads it from cin and then prints it to cout (to verify that the rest works).

Once you have that, add an if/then/else statements to compute the service charge. Print the result to cout.
Topic archived. No new replies allowed.