Number generator: making one starting at : 0 + 1 = 1

You're either kidding (it is close to Hallowe'en), or else I've no clue what you're talking about.

Maybe you could use the constant function on your calculator.

Type 0+1=============== and see what it does.
 
Can you please explain in more detail what you are wanting to do?

Thanks! :D
John
 
ok, say in the equation for the volume of a sphere, I want to make "r" a number generator that would make the sphere, say grow. I wish to make "r" start at 0 then become 1, 2, 3, ect... Thanks for your help.
 
Try this poppa.....

LIMIT = ?
PRINT = y
n=0
increase n by 1 until you reach LIMIT
godo VOLUMEJOB

VOLUMEJOB
r = n
calculate VOLUME
if PRINT=y then print VOLUME
 
poppascience said:
ok, say in the equation for the volume of a sphere, I want to make "r" a number generator that would make the sphere, say grow. I wish to make "r" start at 0 then become 1, 2, 3, ect... Thanks for your help.

I assume you are trying to write a program to do this.

Have you used "loop" in programming - "If-then loop" or "while-wend loop" or "For-Next loop"?
 
Top