I would like to make a program that will print to the printer odd
numbers of an entered number. For example if I enter 14 in the textbox
I will get a printout like this: 13, 11, 9, 7, 5, 3, 1
How would I go about doing this? I would assume I would use a loop and
do something like this?..
while text1.text !=0
then mod by 1 and display the answer
loop
numbers of an entered number. For example if I enter 14 in the textbox
I will get a printout like this: 13, 11, 9, 7, 5, 3, 1
How would I go about doing this? I would assume I would use a loop and
do something like this?..
while text1.text !=0
then mod by 1 and display the answer
loop