Joined
Last Seen
0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: Here you go I hope this helps!!! [code]//Chapter 3 in C++ Programming //Parking Garage //Author Robert Capetillo 8-12-05 #include <iostream> using std::cout; using std::cin; using std::endl; using std::fixed; #include <iomanip> using std::setw; using std::setprecision; int main() { int count; int x; double charge; double a; double b; double c; cout<< … |
The End.