0
Given two num a and b write a program using function to print all odd numbers
Sample a =1 B=10 Then output 1 3 5 7 9 1 Why print 1 at last??? What is wrong in this?? https://code.sololearn.com/c9vN67S0Ejn6/?ref=app
2 Answers
+ 3
line 22: you try to call odd() incorrectly, hence it returns 1, indicating an issue.
+ 1
đ ok