82.9k views
0 votes
Wilh the aid of the the diagram using an algorithm to calculate table 2 of multiplication​

User Folse
by
3.9k points

1 Answer

1 vote

Answer:

See attachment for algorithm (flowchart)

Step-by-step explanation:

The interpretation of the question is to design a flowchart for times 2 multiplication table (see attachment for the flowchart)

The explanation:

1. Start ---> Start the algorithm

2. num = 1 ---> Initializes num to 1

3. while num
\le 12 ---> The following loop is repeated while num is less than 12

3.1 print 2 * num ----> Print the current times 2 element

3.2 num++ ---> Increment num by 1

4. Stop ---> End the algorithm

Wilh the aid of the the diagram using an algorithm to calculate table 2 of multiplication-example-1
User Dr Schizo
by
4.4k points