How Software Gets Done  


(No Login on Secured Page)

Custom Software Buyers
Request new bids
Search Coders
My Account
 
My Buyer 'To Do' List
 
My bid requests
  My escrow account
 
My General Info
Verification
 
Help for Buyers
Articles for Buyers
FAQ for Buyers
Latest News
 

Custom Software Coders

Newest open work
Browse all work
Search all work
My Account
 
My Coder 'To Do' List
 
My bids
 
My General Info
  My credit account
 
Help for Coders
Articles for Coders
FAQ for Coders
Latest News
 

Affiliates

My account
 
My pipeline
 
My credit account
 
Help for Affiliates
Latest News
 
Newest Open Bid Requests.
Convert Unix C to Windows C++
By TonyV on May 13
Max Bid: Open to fair suggestions


Calendar & Brochure in PageMaker
By Garry Craig on May 13
Max Bid: $40


Proffesional Website Design & Corporat ...
By LewisBenge on May 13
Max Bid: Open to fair suggestions


data access objectl for access database
By napas_1999 on May 13
Max Bid: Open to fair suggestions


Screenshots for site redesign
By Ben_J on May 13
Max Bid: $60


Online voice greeting/mail
By Mariuz on May 13
Max Bid: Open to fair suggestions


Click here to put this ticker on your own site

Open Work Categories.
Database 
(144 open)
   Access 
(60 open)
   MySQL 
(77 open)
   Oracle 
(9 open)
   SQL Server 
(51 open)
   Other DB 
(15 open)
Documentation / Tech Writing 
(32 open)
Data Entry 
(23 open)
Game Development 
(24 open)
Graphics / Art / Music 
(49 open)
   Graphics 
(55 open)
     3d Animation 
(12 open)
   Art (Misc.) 
(20 open)
   Music 
(7 open)
   3d Modeling 
(8 open)
Language Specific 
(110 open)
   ASP 
(70 open)
   C# 
(34 open)
   C++ / C 
(121 open)
   Cold Fusion 
(4 open)
   Delphi 
(31 open)
   Java 
(54 open)
   Perl 
(35 open)
   PHP 
(96 open)
   XML/XSL 
(21 open)
   Visual Basic 
(139 open)
   Visual Basic .Net 
(78 open)
   Other 
(53 open)
Misc 
(43 open)
   CAD 
(2 open)
MultiMedia 
(42 open)
Network 
(37 open)
   Network Design 
(8 open)
   Network Implementation 
(11 open)
Platforms 
(72 open)
   Windows 
(152 open)
     MS Exchange 
(4 open)
     MS Office 
(13 open)
     Other 
(7 open)
   Darwin 
(1 open)
   Internet Browser 
(47 open)
   Linux 
(48 open)
   UNIX 
(23 open)
   Hand Held/PDA Programming 
(11 open)
Requirements 
(11 open)
Security 
(35 open)
Testing / Quality Assurance 
(20 open)
Web 
(168 open)
   Page Design 
(85 open)
   Flash 
(57 open)
   Web Services 
(75 open)
   Web (Other) 
(92 open)
Training 
(12 open)
   Computer Based 
(14 open)
 
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

C++ introductory assignment
Bid Request Id: 38018
Bookmark in my 'To Do' list
Posted by: NA4 (1 ratings)
(Software buyer rating 10)
Non-action Ratio: Very Good - 0.00%
Posted: Dec 2, 2002
5:48:36 PM EDT
Bidding Closes: Dec 5, 2002
6:12:16 PM EDT
Viewed (by coders): 183 times
Deadline: 12/6/2002
TIME EXPIRED
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Language Specific, C++ / C
Enter chat room for this bid request
(0 active users at May 13, 2003 11:52:12 AM EDT)

Description:
Purpose:
I'm having difficulty writing and debugging my own programs.
I need a working program in Microsoft Visual C ++ 6.0 for the problem below.
I prefer it to be written in a basic, or easily followed format.
There must be extensive comments that explain why the code is written in such a way, along with descriptions on what is occurring at each point within the program.
In all, I would like to be able to fully understand every process. I plan on using your input to enhance my own programming skills.

Problem:
A complex ("imaginary") number has the form a + bi, where i is the square root of - 1.
Here, a is called the real part and b is called the imaginary part.
Alternatively, a + bi can be expressed as the ordered pair of real numbers (a,b).

Arithmetic operations on two complex numbers (a,b) and (c,d) are as follows:

(a,b) + (c,d) = (a+c, b+d)
(a,b) - (c,d) = (a-c, b-d)

(a,b) * (c,d) = (a * c - b * d, a * d + b * c)

(a,b)/(c,d) = ((a*c + b*d)/ (c^2 + d^2), (b*c - a*d)/(c^2 + d^2) )

Also, the absolute value (or magnitude ) of a complex number is defined as:

|(a, b)| = the square root of a^2 + b^2

Design, implement, and test a complex number class that represents the real and imaginary parts as double precision values (data type double) and provides at least the following operations:

1. Constructors for explicit as well as default initialization.
The default initial value should be (0.0, 0.0).

2. Arithmetic operations that add, subtract, multiply, and divide two complex numbers.
These should be implemented as value- returning functions, each returning a class object.

3. A complex absolute value operation.

4. Two observer operations, RealPart and ImagPart, that return the real and imaginary parts of a complex number.

Additional information, and the expected result upon executing the code under specified variables is maintained below.



Deliverables:
1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.

2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request.

3) Complete ownership and distribution copyrights to all work purchased.


Deadline : 5th or 6th of December 2002

Platform:
Use the Integer class as the frame for your Complex class. Remember that the addition, subtraction, multiplication and division functions for the Complex class must return an object of type Complex (similar to the Integer class). However, for the absolute function, should return a float value.
Solution: For the programming problem, the following complex numbers should be used to test the program for submission: (2, 3) and (-8, 10). Result should be:
The value of complex number a:
The Real part is: 2
The Imaginary part is: 3
The value of complex number b:
The Real part is: -8
The Imaginary part is: 10
Absolute value of a = 3.60555
The addition of a and b results:
The Real part is: -6
The Imaginary part is: 13
The subtraction of a and b results:
The Real part is: 10
The Imaginary part is: -7
The multiplication of a and b results:
The Real part is: -46
The Imaginary part is: -4
The division of a and b results:
The Real part is: 0.0853659
The Imaginary part:

Must be 100% finished and received by buyer on:
Dec 6, 2002 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.

Special Conditions / Other:
Must be completed on the 5th or by the 6th at the latest.


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!
idleswell
(65 ratings)
in Saint John, New Brunswick
Canada
Bid id: 412,971
 
$13 (USD) Dec 2, 2002
6:24:14 PM EDT
 9.74
(Excellent)
   
Hello,

I will implement your C++ class representing complex numbers within a day.

Your code will be straightforward, intelligible and well-documented.

A IDLER
Chief Software Architect
Idleswell Software Creations

 




Quick Search
 

 Advanced Search
Newest Open Work
Latest News

 
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 

Rent A Coder Top Coders.


Anuj Gakhar
Rated a 9.98 on 92 jobs 
Securenext
Rated a 9.98 on 97 jobs 
Buddies
Rated a 9.82 on 76 jobs 
Codman
Rated a 9.97 on 140 jobs 
Andrei Remenchuk
Rated a 10 on 12 jobs 
Michael Sharp
Rated a 9.97 on 170 jobs 
RNA
Rated a 9.93 on 36 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
hernest
Rated a 10 on 109 jobs 
markesh
Rated a 10 on 21 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers
 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 


Affiliate Sites



Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.