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.
(See all)
Course/Homework
By Vegmite on Aug 17
Max Bid: Open to fair suggestions


Casino Game Bugz
By Peter LEwis on Aug 16
Max Bid: Open to fair suggestions


Customized Dj Buttons (OCX)
By z0rQuE on Aug 16
Max Bid: $40


Web Code for Form/Mailing List
By GetUsedParts on Aug 16
Max Bid: $500


Need Proxies, (an opportunity for recurring buying ...
By , on Aug 16
Max Bid: Open to fair suggestions


Simple Shopping Cart w/ Paypal and Authorize.net p ...
By Barney on Aug 16
Max Bid: Open to fair suggestions


Click here to put this ticker on your own site and/or get live RSS newsfeeds

Open Work Categories.
Database 
(176 open)
   Access 
(60 open)
   MySQL 
(100 open)
   Oracle 
(8 open)
   SQL Server 
(62 open)
   Other DB 
(20 open)
Documentation / Tech Writing 
(16 open)
   Language (Human) Translations 
(7 open)
Data Entry 
(37 open)
Game Development 
(16 open)
Graphics / Art / Music 
(48 open)
   Graphics 
(53 open)
     Adobe AfterEffects 
(4 open)
     Adobe Photoshop 
(29 open)
     Adobe Premiere 
(6 open)
     3d Animation 
(13 open)
   Art (Misc.) 
(15 open)
   Music 
(11 open)
   Photography 
(6 open)
   3d Modeling 
(9 open)
Language Specific 
(114 open)
   Assembly / Machine language 
(8 open)
   ASP 
(68 open)
   ASP .NET 
(60 open)
   C# 
(59 open)
   C++ / C 
(129 open)
   Carbon (Mac OS) 
(3 open)
   Cocoa / Obj-C 
(4 open)
   Cold Fusion 
(13 open)
   Delphi 
(56 open)
   Java 
(77 open)
   JSP 
(12 open)
   Perl 
(48 open)
   Python 
(7 open)
   PHP 
(103 open)
   XML/XSL 
(37 open)
   Visual Basic 
(152 open)
   Visual Basic .Net 
(98 open)
   Other 
(74 open)
Misc 
(40 open)
   CAD 
(6 open)
MultiMedia 
(32 open)
   Video Editing 
(7 open)
Network 
(47 open)
   Network Design 
(8 open)
   Network Implementation 
(15 open)
Platforms 
(69 open)
   Windows 
(198 open)
     MS Exchange 
(12 open)
     MS Office 
(21 open)
     Other 
(18 open)
   Darwin 
(1 open)
   Internet Browser 
(54 open)
   Linux 
(62 open)
   UNIX 
(17 open)
   Hand Held/PDA Programming 
(18 open)
Requirements 
(10 open)
Security 
(34 open)
Testing / Quality Assurance 
(21 open)
Web 
(199 open)
   Page Design 
(98 open)
   Flash 
(49 open)
   Web Services 
(87 open)
   Web (Other) 
(91 open)
Training 
(13 open)
   Computer Based 
(11 open)
Other
 
Other Sites

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

guess my number
Bid Request Id: 529
Bookmark in my 'To Do' list
Posted by: kjh5864@cs.com (1 ratings)
(Software buyer rating 10)
Non-action Ratio: Very Good - 0.00%
Buyer Security Verifications: Unverified
Approved on: Jun 26, 2001
9:47:05 PM EDT
Bidding Closes: Jun 28, 2001
9:00:00 PM EDT
Viewed (by coders): 1383 times
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Unknown
Bidding Type: Open Auction
Categories: Java
Enter chat room for this bid request
(0 active users at Aug 17, 2003 7:37:14 AM EDT)

Description:
using java to create three buttons. they are buttons too high, to low, and that's it. the user picks a number in a range of 1-100 and clicks on it for the computer to guess it.

Deliverables:
the program to run.


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!
Anuj Gakhar
(60 ratings)
in Ludhiana, Punjab
India
Bid id: 5,594
$25 (USD) Jun 27, 2001
1:09:56 AM EDT
 9.97
(Excellent)
   
Here's the logic import java.util.*; public class NumberGuessBean { int answer; boolean success; String hint; int numGuesses; public NumberGuessBean() { reset(); } public void setGuess(String guess) { numGuesses++; int g; try { g = Integer.parseInt(guess); } catch (NumberFormatException e) { g = -1; } if (g == answer) { success = true; } else if (g == -1) { hint = 'a number next time'; } else if (g < answer) { hint = 'higher'; } else if (g > answer) { hint = 'lower'; } } public boolean getSuccess() { return success; } public String getHint() { return '' + hint; } public int getNumGuesses() { return numGuesses; } public void reset() { answer = Math.abs(new Random().nextInt() % 100) + 1; success = false; numGuesses = 0; } } Accept my bid if you like this Jimmy
 

Anuj Gakhar
(60 ratings)
in Ludhiana, Punjab
India
Bid id: 5,596
$25 (USD) Jun 27, 2001
1:23:16 AM EDT
 9.97
(Excellent)
   
Accept my Bid and I will tell you how to use it in your own environment.

Jimmy
 

Anuj Gakhar
(60 ratings)
in Ludhiana, Punjab
India
Bid id: 5,601
$25 (USD) Jun 27, 2001
2:15:56 AM EDT
 9.97
(Excellent)
   
I have made two versions of this applet for you and one version in JSP. I can send you all the three in 5 minutes after you accept my bid.
 




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.97 on 106 jobs 
Securenext
Rated a 9.97 on 116 jobs 
Buddies
Rated a 9.83 on 85 jobs 
Andrei Remenchuk
Rated a 10 on 14 jobs 
Codman
Rated a 9.97 on 153 jobs 
Michael Sharp
Rated a 9.98 on 182 jobs 
D-N-S
Rated a 9.93 on 38 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
hernest
Rated a 10 on 116 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.