Posted: Tue Nov 11, 2003 9:18 pm Post subject: strint <-> intsr help
I'm having trouble with converting the numbers from integers to string even though I'm doing it the way the reference said it should be done.
code:
var num : int
var fnum : string
get num
for i : 1 .. num - 1
num := num * i
end for
intstr (num) := fnum
put fnum
I don't understand where exactly my error is or what I'm doing wrong. Can someone please help me out? btw my program is just a figuring out the factorial powers of whole numbers from 1..user input in case anybody was wondering. [/code]
Sponsor Sponsor
Mazer
Posted: Tue Nov 11, 2003 9:56 pm Post subject: Re: strint <-> intsr help
your problem is right here:
code:
intstr (num) := fnum
with that line you are trying to assign assign a string to a string that holds a number (whatever number num ends up being at the time).
intstr converts an integer to a string
strint converts a string to an integer (you might want to use the strintok function first)
what i think you want is
code:
num := strint (fnum)
of course that doesn't make any sense, especially considering fnum isn't defined. so maybe what i think you meant was
code:
fnum := intstr (num)
Chimaera
Posted: Tue Nov 11, 2003 9:59 pm Post subject: (No subject)
thanks a bundle I finally got the program to work the way I wanted to because I reworded it the way you suggested.
Mazer
Posted: Tue Nov 11, 2003 10:04 pm Post subject: (No subject)
happy to help. here, have some bits.
**puts on bits-gun silencer**
Tony
Posted: Tue Nov 11, 2003 11:18 pm Post subject: (No subject)
Mazer wrote:
**puts on bits-gun silencer**
I still heard that I should ask dan to write up some code just to stop Mazer from recieving any bits