cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
help
help
Apr 18, 2019 at 3:11pm UTC
steven90
(4)
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++
Apr 18, 2019 at 3:38pm UTC
dhayden
(5798)
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.