60,051 views
11 votes
11 votes
Wilh the aid of the the diagram using an algorithm to calculate table 2 of multiplication​

User Jagadeesh J
by
2.8k points

1 Answer

23 votes
23 votes

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 Petteri H
by
3.0k points