Recent Feedback
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 102 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
hi
thanks for using justAnswer.com
i will give the answer soon
with regards
I need Pseudocode. Thanks.
stay online
i will give within 10 minutes
okay.
here is the answer below
StartDeclare the variables i, j, k as integersfor i = 1 to 10 dofor j= 1 to 10 doDisplay j *knext jk=k+1next iStop
hope this helps you
Could writ it as below:For (Count = 1; Count <=10; .....)
this is C++ psuedo code, right
generally Pseudocode like this
StartDeclare the variables count1, count2, k as integersfor count1 = 1 to 10 dofor count2= 1 to 10 doDisplay count2 *knext count2k=k+1next count1Stop
in c++ , you can write as
StartDeclare the variables Count1, Count2, k as integersFor (Count1 = 1; Count1 <=10;Count1++)
For(Count2 = 1; Count2 <=10;Count2++)Display Count2 *knext Count2k=k+1next Count1Stop
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 102 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.)
can i make the code in c++,
for the second one you need the pseudocode and flowchart, right
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.
for the second question you want to include the flowchart also, right
hello
i will give these answers within some time
yes, it is all one program (Multiplication table up to 10)
ok
thanks again for your time. I will stay online for your response.
here is the answer link below
http://www.mediafire.com/?881sf56mu2xuzvo
do the user have to input anything, for the program to execute the time table?
no user input
in your question, just to display the multiplication table
I try the flow chart on Raptor and it is not running
i don't have Raptor . i did it in Ms Word
you redo it in Raptor
see attached flowchart let me know what is wrong. How can I write Count1=1 to 10??
Attachment: 2011-09-25_193604_raptorflowchart.docx
your flowchart is correct
no need to write Count1=1 to 10
. becuase you already set Count1=1
this is correct
Experience: Master of Computer Application plus 5+ year experience in Software development