Draw a flow chart and write an algorithm for a program that multiplies all the three digit odd
numbers. (Hint: These numbers are 101, 103, …999. You must use looping to multiply them
Answers
Answered by
9
Answer:
Step 1: Start
Step 2: Declare variable c of integer type
Step 3: Set c=0
Step 4: Repeat step 4.1 to 4.3 while (c<=100)
Step 4.1: if (c%2 != 0)
Step 4.2: then print c
Step 4.3 : c=c+1
Step 5: Stop
Answered by
0
Answer:
write an algorithm for a program that multiplies all the three digit odd
numbe
Similar questions