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.
component for changing partition
By delphiheaven on Jul 12
Max Bid: Open to fair suggestions


WebQuiz
By DigitalBuyer on Jul 12
Max Bid: Open to fair suggestions


Simple 1-Page Website Redesign
By BuffaloRoam on Jul 11
Max Bid: Open to fair suggestions


web server Script to launch external program
By gulyasa on Jul 11
Max Bid: $20


New Site Design to Appeal to the Masses!
By sistervisiontec h on Jul 11
Max Bid: $100


JDBC/mySQL performance problem
By demosfen on Jul 11
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 
(144 open)
   Access 
(55 open)
   MySQL 
(79 open)
   Oracle 
(10 open)
   SQL Server 
(48 open)
   Other DB 
(19 open)
Documentation / Tech Writing 
(15 open)
Data Entry 
(21 open)
Game Development 
(26 open)
Graphics / Art / Music 
(54 open)
   Graphics 
(60 open)
     Adobe AfterEffects 
(1 open)
     Adobe Photoshop 
(19 open)
     Adobe Premiere 
(4 open)
     3d Animation 
(15 open)
   Art (Misc.) 
(20 open)
   Music 
(11 open)
   3d Modeling 
(12 open)
Language Specific 
(92 open)
   ASP 
(59 open)
   ASP .NET 
(38 open)
   C# 
(38 open)
   C++ / C 
(108 open)
   Carbon (Mac OS) 
(1 open)
   Cocoa / Obj-C 
(2 open)
   Cold Fusion 
(13 open)
   Delphi 
(26 open)
   Java 
(61 open)
   JSP 
(7 open)
   Perl 
(42 open)
   PHP 
(86 open)
   XML/XSL 
(30 open)
   Visual Basic 
(144 open)
   Visual Basic .Net 
(58 open)
   Other 
(52 open)
Misc 
(27 open)
   CAD 
(3 open)
MultiMedia 
(41 open)
   Video Editing 
(6 open)
Network 
(41 open)
   Network Design 
(12 open)
   Network Implementation 
(12 open)
Platforms 
(73 open)
   Windows 
(171 open)
     MS Exchange 
(5 open)
     MS Office 
(14 open)
     Other 
(14 open)
   Darwin 
(1 open)
   Internet Browser 
(43 open)
   Linux 
(56 open)
   UNIX 
(26 open)
   Hand Held/PDA Programming 
(9 open)
Requirements 
(12 open)
Security 
(29 open)
Testing / Quality Assurance 
(17 open)
Web 
(148 open)
   Page Design 
(81 open)
   Flash 
(45 open)
   Web Services 
(70 open)
   Web (Other) 
(68 open)
Training 
(10 open)
   Computer Based 
(10 open)
Other
 
Other Sites

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

Multiplication Tables
Bid Request Id: 35786
Bookmark in my 'To Do' list
Posted by: aminew (21 ratings)
(Software buyer rating 10)
Non-action Ratio: Very Good - 0.00%
Buyer Security Verifications: Good
Approved on: Nov 17, 2002
1:55:50 AM EDT
Bidding Closes: Nov 19, 2002
2:02:27 AM EDT
Viewed (by coders): 198 times
Deadline: 11/19/2002 2:02:27 AM
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: Windows, Database, Language Specific, C++ / C, Platforms, Training
Enter chat room for this bid request
(0 active users at Jul 12, 2003 9:25:02 AM EDT)

Description:
Overview
This is an interactive program that requires the use of repetition control statements (i.e. loops).

Specification
Enter into a sentinel controlled query loop that prompts the user to enter how many rows and columns they want to see in a multiplication table.

Based on the user inputs, generate and print the appropriate multiplication table. If the user enters -99 for the number of rows or the number of columns, then print the total number of tables generated and terminate the program.

Print an error message to the standard error stream if any of the following are true:

number of rows is less than 1 (and not equal the sentinel value)
number of rows is greater than 16
number of columns is less than 1
number of columns is greater than 12
[Note: be sure you use manifest constants.]

The logic (i.e. code) for printing the multiplication table must be contained within a function. After user inputs have been obtained, then call your function to print the table. The function receives two int parameters -- the number of rows and the number of columns.

int rowcnt, colcnt;

... // code goes here

cin >> rowcnt;

... // code goes here

cin >> colcnt;

... // code goes here

printMultTable(rowcnt, colcnt);

... // code goes here

/*
* this function prints a ...
*/
void printMultTable(int nrows, int ncols) {
... // code goes here
}

Print headings along the top and down the side of each table.

You are required to use all three repetition control statements in this program (i.e. your program must have at least one for() statement, one while() statement, and one do-while() statement).

Your multiplication tables must be nicely formatted (i.e. fixed column widths -- see setw()).


Deliverables:
1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Example Output Assume user inputs are in brackets <>. Enter number of rows 1-16 (-99 to exit): <12> Enter number of columns 1-12 (-99 to exit): <12> 1 2 3 4 5 6 7 8 9 10 11 12 ----------------------------------------------------- 1 | 1 2 3 4 5 6 7 8 9 10 11 12 2 | 2 4 6 8 10 12 14 16 18 20 22 24 3 | 3 6 9 12 15 18 21 24 27 30 33 36 4 | 4 8 12 16 20 24 28 32 36 40 44 48 5 | 5 10 15 20 25 30 35 40 45 50 55 60 6 | 6 12 18 24 30 36 42 48 54 60 66 72 7 | 7 14 21 28 35 42 49 56 63 70 77 84 8 | 8 16 24 32 40 48 56 64 72 80 88 96 9 | 9 18 27 36 45 54 63 72 81 90 99 108 10 | 10 20 30 40 50 60 70 80 90 100 110 120 11 | 11 22 33 44 55 66 77 88 99 110 121 132 12 | 12 24 36 48 60 72 84 96 108 120 132 144 Enter number of rows 1-16 (-99 to exit): <0> *** error: invalid number of rows entered Enter number of rows 1-16 (-99 to exit): <5> Enter number of columns 1-12 (-99 to exit): <15> *** error: invalid number of columns entered Enter number of columns 1-12 (-99 to exit): <10> 1 2 3 4 5 6 7 8 9 10 --------------------------------------------- 1 | 1 2 3 4 5 6 7 8 9 10 2 | 2 4 6 8 10 12 14 16 18 20 3 | 3 6 9 12 15 18 21 24 27 30 4 | 4 8 12 16 20 24 28 32 36 40 5 | 5 10 15 20 25 30 35 40 45 50 Enter number of rows 1-16 (-99 to exit): <-99> 2 tables generated.

Platform:
windows XP

Must be 100% finished and received by buyer on:
Nov 19, 2002 2:02:27 AM 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.


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!
Xile
(14 ratings)
in Bourgas, Bourgas
Bulgaria
Bid id: 392,132
 
$9 (USD) Nov 17, 2002
8:05:43 AM EDT
 10
(Excellent)
   
Hello,
this application is easy to write and I have already made it. I have attached it in executable form. If you accept this bid you will get the source code as well.

The program is bug-free, but in case you discover any kind of problem with it, I will fix it for free. I will also help you understand the code if you need to.

Thanks
Attached File
 




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.97 on 102 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.