Login|Contact Us
Question and Answer

Programming

Ask a Programming Question, Get an Answer ASAP!

  • Ask A Question
  • Browse Answers
  • Meet The Experts
  • How JustAnswer Works

How to write a pseudocode for a multiplication table up to

 
jatechexpert's Avatar
  • Answered by:jatechexpert
  • Computer Software Engineer
  • Positive Feedback: 96.8 %
  • Accepted Answers: 1281
Verified Expert
in Programming

Recent Feedback

Positive
Great Help! Will use again!
Positive
Type your review here...
Positive
great job
Positive
Awesome, thank you! I really appreciate your quick response and the solution.
Positive
Work was excellent and will recommend to everyone who needs programming help.
Positive
nice job
Positive
Great! Thank you!
Positive
Fast response and quality work
Positive
very helpful and did exactly what was asked for
Positive
Thanks

Customer Question

How to write a pseudocode for a multiplication table up to 10, it have to display it like below:
1 2 3 4 5 6 7 8 9 10
2 4 6 8 10 12 14 16 18 20

 

Optional Information:
Computer OS: Windows 7
Browser: IE
Programming Language: pre-programming language
Compiler: n/a

Already Tried:
none

Submitted: 592 days ago.
Category: Programming
Value: $65
Status: CLOSED
Picture
Expert:  jatechexpert replied 592 days ago.

hi

 

thanks for using justAnswer.com

 

i will give the answer soon

 

with regards

Customer replied 592 days ago.

I need Pseudocode. Thanks.

Picture
Expert:  jatechexpert replied 592 days ago.

hi

 

stay online

i will give within 10 minutes

 

Customer replied 592 days ago.

okay.

Picture
Expert:  jatechexpert replied 592 days ago.

hi

 

here is the answer below

 

Start
Declare the variables i, j, k as integers
for i = 1 to 10 do
for j= 1 to 10 do
Display j *k
next j
k=k+1
next i
Stop

 

 

hope this helps you

 

Customer replied 592 days ago.

Could writ it as below:
For (Count = 1; Count <=10; .....)

Picture
Expert:  jatechexpert replied 592 days ago.

hi

 

this is C++ psuedo code, right

generally Pseudocode like this

 

Start
Declare the variables count1, count2, k as integers
for count1 = 1 to 10 do
for count2= 1 to 10 do
Display count2 *k
next count2
k=k+1
next count1
Stop

 

 

in c++ , you can write as

 

Start
Declare the variables Count1, Count2, k as integers
For (Count1 = 1; Count1 <=10;Count1++)

For(Count2 = 1; Count2 <=10;Count2++)
Display Count2 *k
next Count2
k=k+1
next Count1
Stop

 

hope this helps you

Customer replied 592 days ago.

One quick question, please below and tell how i can make the program to go to next line after 10 Steps.
1. Provide your analysis for the following problem statement:
Write a program that will calculate the results for the multiplication table up to 10x10 in steps of 1 beginning at 1. (For example, 1X1, 1X2, 1X3 … 1X10, 2X1, 2X2 …. 10X2 … 10x10). Your program must print the output for each step and output a new line after 10 items. So the example output would be something like this Notice a new line appears after 10 steps:
1 2 3 4 5 6 7 8 9 10
2 4 6 8 10 … 20
…
10 20 30 … 100

To write the new lines you can just use code similar to : write “new line”. Hint: You will probably use a nested repetition loop and an if-then statement.
Your analysis should be clearly written and demonstrate your thought process and steps used to analyze the problem. Be sure to include what is the required output? What is the necessary input and how you will obtain the required output from the given input? Also, include your variable names and definitions. Be sure to describe any necessary formulas and sample calculations.
2. Provide your program design for the program you analyzed for printing the multiplication table. Be sure to describe the fundamental tasks (i.e., things your program must do) needed to solve the problem so you can use a modular design. Provide pseudocode of your overall design that includes the Main module and the order of the module calls, and a Hierarchy chart for the program (see figure 3.8 page 148). Include appropriate comments in your pseudocode. Finally, display the flow charts (using Raptor, or your favorite graphics editor) for each module. (See figure 5.3 page 225 as an example.)

Picture
Expert:  jatechexpert replied 592 days ago.

hi

 

can i make the code in c++,

 

for the second one you need the pseudocode and flowchart, right

 

Customer replied 592 days ago.

Pseudocode, as I am in pre-language programing. I would not understand the C++. Could write it as pseudocode (write, declare, set, .....) Thanks for your time.

Picture
Expert:  jatechexpert replied 592 days ago.

hi

 

for the second question you want to include the flowchart also, right

Picture
Expert:  jatechexpert replied 592 days ago.

hello

 

i will give these answers within some time

Customer replied 592 days ago.

yes, it is all one program (Multiplication table up to 10)

Picture
Expert:  jatechexpert replied 592 days ago.

hi

ok

Customer replied 592 days ago.

thanks again for your time. I will stay online for your response.

Picture
Expert:  jatechexpert replied 591 days and 23 hours ago.

hi

 

 

here is the answer link below

 

http://www.mediafire.com/?881sf56mu2xuzvo

 

hope this helps you

 

 

Customer replied 591 days and 23 hours ago.

do the user have to input anything, for the program to execute the time table?

Picture
Expert:  jatechexpert replied 591 days and 23 hours ago.

hi

no user input

 

in your question, just to display the multiplication table

Customer replied 591 days and 23 hours ago.

I try the flow chart on Raptor and it is not running

Picture
Expert:  jatechexpert replied 591 days and 23 hours ago.

hi

 

i don't have Raptor . i did it in Ms Word

 

you redo it in Raptor

Customer replied 591 days and 23 hours ago.

see attached flowchart let me know what is wrong. How can I write Count1=1 to 10??

Attachment: 2011-09-25_193604_raptorflowchart.docx

Accepted Answer

Picture
Expert:  jatechexpert replied 591 days and 23 hours ago.

hi

 

your flowchart is correct

no need to write Count1=1 to 10

. becuase you already set Count1=1

 

this is correct

Expert TypeComputer Software Engineer
Category: Programming
Pos. Feedback: 96.8 %
Accepts: 1281
Answered: 9/25/2011

Experience: Master of Computer Application plus 5+ year experience in Software development

Ask this Expert a Question >
 
Tweet

4 Programmers are Online Right Now

Ask Your Question Now
Programming Questions Date Submitted
I need to make a inventory program for CS 115. I've had a very 5/2/2013
I want to get into programming but have no prior experience. 5/2/2013
Street Light Verilog Code 5/1/2013
Based on your new found knowledge and experience in problem 4/30/2013
this is a GUI done in C# Create an application in which a 4/29/2013
I am trying to use vba to click a button on a webpage but can't 4/29/2013
For LogicPro only:Help with Java Programming project. 4/29/2013
Drink Machine SimulatorWrite a program that simulates a 4/28/2013
Implement a class Car with the following properties. A car 4/27/2013
***The Doctor***I purchased a web template and I am currently 4/27/2013
RSS
Next 10 >
Ask A Programmer
Type Your Programming Question Here...
characters left:

Top Programming Experts

See More Programmers

In The News

Nbc
Washington Post
New York Times
Cnn
Learn More

How It Works

  • Ask an Expert
  • Get a Professional Answer
  • Ask Followup Questions
  • 100% Satisfaction Guarantee
Learn More
close
Find Expert answers related to your question.
Sign up using email
We will never post anything without your permission.
Already have an account? Sign in

Ask a Programmer

Get a Professional Answer. 100% Satisfaction Guaranteed.
130 Programmers are Online Now
Type Your Programming Question Here...
characters left:
Disclaimer: Information in questions, answers, and other posts on this site ("Posts") comes from individual users, not JustAnswer; JustAnswer is not responsible for Posts. Posts are for general information, are not intended to substitute for informed professional advice (medical, legal, veterinary, financial, etc.), or to establish a professional-client relationship. The site and services are provided "as is" with no warranty or representations by JustAnswer regarding the qualifications of Experts. To see what credentials have been verified by a third-party service, please click on the "Verified" symbol in some Experts' profiles. JustAnswer is not intended or designed for EMERGENCY questions which should be directed immediately by telephone or in-person to qualified professionals.
Truste
Contact Us | Terms of Service | Privacy & Security | About Us | Our Network
© 2003-2013 JustAnswer LLC
  • Pearl.com
  • JustAnswer UK
  • JustAnswer Germany
  • JustAnswer Spanish
  • JustAnswer Japan