How Software Gets Done  


Login

Software Buyers
Request bids
Search coders
My Buyer Account
Buyer help
Buyer articles
Buyer FAQ
Latest news
 
Software Coders
Newest open work
Browse all work
Search all work
My Coder Account
Coder help
Coder articles
Coder FAQ
Latest news
 
Affiliates
My Affiliate Account
Affiliate help
Affiliate FAQ
Latest news
 
Newest Bid Requests.
Easy Classified Ads website
By rozsa2 on Jul 10
Max Bid: $100


Read a Usenet Group on a web page
By corbing on Jul 10
Max Bid: Open to fair suggestions


Windows Service - Loads background Web page
By ironcladsecure on Jul 10
Max Bid: Open to fair suggestions


Cobol conversion
By 2good2 on Jul 10
Max Bid: Open to fair suggestions


Non-Profit web site backend DB
By stnwall on Jul 10
Max Bid: Open to fair suggestions


Professional Realty WebSite (<a href="
Click here to put this ticker on your own site and/or get live RSS newsfeeds

Open Work Categories.
Database 
(139 open)
   Access 
(52 open)
   MySQL 
(83 open)
   Oracle 
(9 open)
   SQL Server 
(49 open)
   Other DB 
(17 open)
Documentation / Tech Writing 
(14 open)
Data Entry 
(20 open)
Game Development 
(24 open)
Graphics / Art / Music 
(46 open)
   Graphics 
(54 open)
     Adobe AfterEffects 
(1 open)
     Adobe Photoshop 
(15 open)
     Adobe Premiere 
(3 open)
     3d Animation 
(13 open)
   Art (Misc.) 
(19 open)
   Music 
(11 open)
   3d Modeling 
(13 open)
Language Specific 
(92 open)
   ASP 
(54 open)
   ASP .NET 
(34 open)
   C# 
(39 open)
   C++ / C 
(103 open)
   Carbon (Mac OS) 
(2 open)
   Cocoa / Obj-C 
(2 open)
   Cold Fusion 
(11 open)
   Delphi 
(26 open)
   Java 
(55 open)
   JSP 
(7 open)
   Perl 
(39 open)
   PHP 
(85 open)
   XML/XSL 
(29 open)
   Visual Basic 
(132 open)
   Visual Basic .Net 
(52 open)
   Other 
(53 open)
Misc 
(29 open)
   CAD 
(3 open)
MultiMedia 
(37 open)
   Video Editing 
(4 open)
Network 
(43 open)
   Network Design 
(11 open)
   Network Implementation 
(13 open)
Platforms 
(75 open)
   Windows 
(160 open)
     MS Exchange 
(6 open)
     MS Office 
(12 open)
     Other 
(15 open)
   Darwin 
(1 open)
   Internet Browser 
(40 open)
   Linux 
(60 open)
   UNIX 
(27 open)
   Hand Held/PDA Programming 
(8 open)
Requirements 
(13 open)
Security 
(27 open)
Testing / Quality Assurance 
(16 open)
Web 
(146 open)
   Page Design 
(78 open)
   Flash 
(37 open)
   Web Services 
(70 open)
   Web (Other) 
(74 open)
Training 
(12 open)
   Computer Based 
(11 open)
Other
 
Other Sites

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

C Project for College HW, Not C++
Bid Request Id: 16908
Bookmark in my 'To Do' list
Posted by: COLLEGE-STUDENT (1 ratings)
(Software buyer rating 10)
Non-action Ratio: Very Good - 18.18%
Buyer Security Verifications: Good
Approved on: May 21, 2002
2:51:21 AM EDT
Bidding Closes: May 23, 2002
2:56:24 AM EDT
Viewed (by coders): 135 times
Deadline: 5/25/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: C++ / C, Other, C#
Enter chat room for this bid request
(0 active users at Jul 10, 2003 9:12:17 PM EDT)

Description:
Need the following ASAP:

1. I need all 3 problems solved in the next 8 hours.
2. I need the program to be written in C and NOT C++.
3. It has to be well commented.
4. I need it by 9:00am United States CT.
5. It needs to be compiled in Microsoft Visaul C++ 6.0.
6. The code file should be .c

Deliverables:
Assignment 2 Problem 1 Due May 21, 2002 Implement a cube root algorithm that comes from Isaac Newton. The method involves making a guess, using the guess to get a better guess, and continuing this process until the difference between two successive guesses is so small you consider the problem solved. Write a program that uses an iterative algorithm for approximating the cube root of any positive number A, which the user inputs into the program. The algorithm is as follows: take any initial approximation X1 that is positive, and then find a new approximation, X2, by calculating a weighted average of X1 and A/(X1*X1), that is X2 = 2/3*X1 + 1/3*A/(X1*X1) (of course not with integers, and you may have to worry about the fractions 2/3 and 1/3). Repeat this procedure with X1 replaced by this new approximation, stopping when X1 and X2 differ in absolute value (use the function fabs( ) which is in <math.h>) by some specified error allowance, such as .000001. Then you are computing the cube root of A to an accuracy of 6 decimal places. The initial approximation should be some automatic guess of the cube root of A. The iterative method should work for any guess you choose. It doesn&'t have to be that accurate. Then allow the user to find more cube roots if he wishes. In other words, allow the user to go back and repeat this operation as many times as he wants to compute new cube roots. Problem 2 Due May 21, 2002 Write a program that is menu driven and that helps a person balance his or her checkbook. The program should start by asking the user for the month&'s opening account balance. Then the program should display a menu that lists the following choices: D for a deposit, C for a check, W for a withdrawal, and Q to quit. The menu should be displayed in a loop until the user selects Q, the option to quit. If the user selects D, ask the user to enter the amount of the deposit, and add the amount to the account balance. If the user enters C, ask the user for the amount of the check, and subtract the amount from the balance. If the user enters W, ask the user for the amount of the withdrawal, and subtract the amount form the balance. When the user enters Q, the program should display the opening balance, the total amount deposited, the total amount withdrawn, the total amount of the checks, and the final balance. If the user enters something other than D, W, C, or Q, the program should issue an error message and redisplay the menu. Allow the user to enter either uppercase or lowercase letters. One more requirement is to write functions for the menu, and for the selections D, C, and W. You need not use a function for the Q option. Remember the program should loop until the user decides he is done by selecting the Q option. Problem 3 Due May 21, 2002 Write a program that models a simple calculator. Each data line should consist of the next operation to be performed from the list below and the right operand or a number to apply the operation to. Assume you are applying the operator to an accumulator value that starts with 0 which is assumed to be on the left in each case. You need a function scan_data( ) with two output parameters that returns the operator and right operand scanned from the data line. You also need a function do_next_op( ) that performs the required operation. The function do_next_op( ) requires two input parameters ( the operator and the operand ) and one input/output parameter (the accumulator). The valid operators are: + add - subtract * multiply / divide ^ power (raise left operand to power of right operand - this is not a C operator - use the pow( ) function in <math.h>) q quit Your calculator should display the accumulator value after each operation. A sample run follows: + 5.0 result so far is 5.0 ^ 2.0 result so far is 25.0 / 2.0 result so far is 12.5 q 0 final result is 12.5

Platform:
Need the following ASAP:

1. I need all 3 problems solved in the next 8 hours.
2. I need the program to be written in C and NOT C++.
3. It has to be well commented.
4. I need it by 9:00am United States CT.
5. It needs to be compiled in Microsoft Visaul C++ 6.0.
6. The code file should be .c

Must be 100% finished and received by buyer on:
May 25, 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:
I need the prooject 8 hours from bidding start date.


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!
SOURAV
(17 ratings)
in NEW DELHI, DELHI
India
Bid id: 183,685
 
$20 (USD) May 21, 2002
3:57:46 AM EDT
 7.88
(Very Good)
   
Hello,
The Isaac Newton algo is the Newton-Raphson method and I have the code for this ready.I'm in India so I have the time advantage and will be able to give you the solutions within the next 3 hrs. But please reply ASAP for me to start work (also pay the money). I know all the programs you want through and through so just send me a quick reply to have the job done.

Thanks,
Sourav.
 
 
 
 
  See 5 private reply(ies)
to/from SOURAV.
 




Quick Bid Request 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.
 
Top Coders.

Anuj Gakhar
Rated a 9.98 on 101 jobs 
Securenext
Rated a 9.96 on 109 jobs 
Buddies
Rated a 9.82 on 80 jobs 
Andrei Remenchuk
Rated a 10 on 13 jobs 
Codman
Rated a 9.97 on 149 jobs 
Michael Sharp
Rated a 9.97 on 181 jobs 
D-N-S
Rated a 9.93 on 37 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
Tometa Software, Inc.
Rated a 10 on 10 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.