Show Bid Request
Simple C++ Program - Questions
Bid Request Id: 6591
|
|
|
Description:
A Simple C++ Program Please see the attached word file. I have attached a working program. Needs a little tweaking, quesions must be answered.
Deliverables: Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. Complete copyrights to all work purchased.
Special Conditions / Other:
Must be completed by December 19th
Additional Files:
This bid request includes IMPORTANT additional attached files. Please download and read fully before bidding.
Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements.
We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation.
If you notice a violation please help out the site and report it. Thanks for your help.
|
|
Bidding/Comments:
|
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests. |
See all rejected bids (and all comments)
Name |
Bid Amount |
Date |
Coder Rating |
|
|
This bid was accepted by the buyer!
|
$10 (USD)
|
Dec 17, 2001 4:44:29 AM EDT
|
9.83
(Excellent)
|
|
|
Hi Jamar,
This is really easy C++ stuff. The first part is a doddle. Your working Calulator program however is NOT using C++ classes and therefore would not get many marks since this is asked for explicitly.
You should be starting the SimpleCalculator interface class something like this:
class CSimpleCalculator
{
public:
CSimpleCalculator();
virtual ~CSimpleCalculator();
float add (float num1,/*to*/ float num2);
float subtract (float num1,/*from*/ float num2);
float multiply (float num1,/*by*/ float num2);
float divide (float num1,/*by*/ float num2);
};
You then flesh out the class in the implementation file and finally write a routine to use the class, declaring an instance of the CSimpleCalculator class and then using it, part of which might be like this:
CSimpleCalculator SimpleCalc;
float result = SimpleCalc.add( 1.2, 3.4);
Well, nearly finished it! All yours for only $10.
A word of advice though, take some time to understand this stuff - it will pay dividends in the long run when you get onto the more complex material.
Best Regards
John
|
|
|
|
|
|