Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 strint <-> intsr help
Index -> Programming, Turing -> Turing Help
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
Chimaera




PostPosted: 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? Question 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
Sponsor
sponsor
Mazer




PostPosted: 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




PostPosted: 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




PostPosted: Tue Nov 11, 2003 10:04 pm   Post subject: (No subject)

happy to help. here, have some bits.

**puts on bits-gun silencer**
Sniper
Tony




PostPosted: Tue Nov 11, 2003 11:18 pm   Post subject: (No subject)

Mazer wrote:
**puts on bits-gun silencer**


I still heard that Laughing I should ask dan to write up some code just to stop Mazer from recieving any bits Wink
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
AsianSensation




PostPosted: Wed Nov 12, 2003 12:48 am   Post subject: (No subject)

would it even matter?

Mazer will probably come up with Evasive Manuever II, and we'll all end up refilling ammo for his bit-gun anyways Laughing
Tony




PostPosted: Wed Nov 12, 2003 12:51 am   Post subject: (No subject)

Laughing he should still be recieving bits for Evasive Manuever I Laughing
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
Mazer




PostPosted: Wed Nov 12, 2003 7:55 am   Post subject: (No subject)

*sniff* you guys... you really love my shitty game that much... makes me feel all warm and tingly inside.
**farts**
oh... so that's what it was... nm Wink
Sponsor
Sponsor
Sponsor
sponsor
Display posts from previous:   
   Index -> Programming, Turing -> Turing Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 8 Posts ]
Jump to:   


Style:  
Search: