Posted: Wed Jun 04, 2008 10:26 pm Post subject: need to create anagrams in turing
hi,
im trying to make a game where one has to slove anagrams and guess the correct words but i cant get the anagrams help
would be appreciated greatly
if possible
may i look at a sample code
Sponsor Sponsor
Tony
Posted: Wed Jun 04, 2008 10:41 pm Post subject: RE:need to create anagrams in turing
Posted: Wed Jun 04, 2008 11:28 pm Post subject: Re: need to create anagrams in turing
disk256 @ Wed Jun 04, 2008 10:26 pm wrote:
if possible
may i look at a sample code
no
as for a simple guildline on what you are going ot make on your own, here a small push
code:
proc you_win ()
proc you_loss ()
get word from user
compare it to original_word
if word = original_word
then you_win
if word != original_word
then you_loss
jeffgreco13
Posted: Thu Jun 05, 2008 10:15 am Post subject: Re: need to create anagrams in turing
LOL i really hope you don't put that above code into Turing. But really pay attention to what Tony said, there's a way to isolate the characters for each word and scramble them as you please.
You're gonna have to look it up tho, it's not nearly as hard as it may seem.
disk256
Posted: Sun Jun 08, 2008 10:00 pm Post subject: Re: need to create anagrams in turing
wasnt hard figured it out myself after stayin up till 4 am
syntax_error
Posted: Mon Jun 09, 2008 3:22 am Post subject: Re: need to create anagrams in turing
jeffgreco13 @ Thu Jun 05, 2008 10:15 am wrote:
LOL i really hope you don't put that above code into Turing.
It is called pseudo-coding.
Sponsor Sponsor
jeffgreco13
Posted: Mon Jun 09, 2008 10:36 am Post subject: Re: need to create anagrams in turing
OMG really? i thot those were legit commands in Turing...
I'm just saying I hope he realizes it's pseudo and doesn't try to use that and adapt it to his own. The things I've seen some inexperienced programmers do, would blow your mind.
S_Grimm
Posted: Thu Jun 12, 2008 12:34 pm Post subject: RE:need to create anagrams in turing