Please help in doing this and if your able too let me know: For the program, you will write a utility that converts dollars to coins. It is a simple program that must have the following:
Multiple outputs to the screen
At least one input
The use of integers and strings
Looking or repetition with Do..While, If..Else
Must have some output text to show correct value of coins that would be converted from the dollars.
Code must include comments explaining your reason for the code section or what the code is doing
Code must compile
Whole dollars only. If value is less than 1 or 0, the program should break or exit.
1
Expert's answer
2012-06-07T08:02:41-0400
void ConvertToCoins(double);
#include <iostream> //allows program to perform input and output
Comments
Leave a comment