Computer Science, asked by Sushreeya, 5 months ago

Write an algorithm to print odd numbers from 99 to 1.

Answers

Answered by angelmaharjan8a
2

Answer:

Step 1: Start

Step 2: Assign i=0

Step 3: Repeat steps 4,5&6 until i=99 reaches

Step 4: If i%2!=0 goto step 5

Step 5: Print i

Step 6: Compute i=i+1

Step 7: Stop

Similar questions