def printA(num):
if (num == 256):
return;
printNow(num);
printA(num+1);
printA(1);
so basically i'm extremely new to coding and i need help, i don't expect the exact fix, but a push in the right direction would be awesome. i need to edit this code in some way to make the odd numbers between 1 and 255 print. currently it prints out all the numbers from 1 to 255, but i just need the odd. any help would be appreciated, thanks a ton in advanced

New Topic/Question
Reply



MultiQuote






|