write an altagram to display the first 10 multiples of 7
Answers
Answered by
0
Answer:
Algorithm is given below
Explanation:
Step 1: Start
let the number , N be 7
Step 2: Initialize k to 1
k=1
Step 3: FIND the product
P= N*K
Step 4 : Output P
Step 5: Increment K by 1
k=k+1
Step 6: Check the value of K
If k<11 Then GOTO Step 3 otherwise GOTO Step 7
Step 7: Stop
Similar questions