Computer Science, asked by aroojkiran8989, 10 months ago

write an algorithm to print the odd numbers of first N naturals numbers

Answers

Answered by debaratidas12
3

Answer:

HERE GOES YOUR ANSWER !!!!!!

/* Algorithm For print "n" numbers */ 

1. Read the value of n.

2. i = 1

3. if ( i > n ) go to step 7

4. Display value of i

5. i = i + 1

6. go to step 3

7. Stop

Similar questions