Game: Button Button

No Takers? OK it was Spirit and her in the Feedback forum wanting/asking to become a moderator. BD

Take over whoever!
 
I think it needs to be name-based alone. Not everyone reads all threads.


Clue: (Z - G) cat (ASC('D') -64)
 
HINT: This is not in a programming language. It is symbolic only.

My ASC() function returns the ASCII value of the string.

cat performs concatenation.

Use Google for the rest. :)
 
Originally posted by BigDadday
Sorry I actually had a life for a few hours and am besides myself :D .

Okay..... um... BigDadday???

No having lives, okay?

:spin:

and how the heck.... I never woulda guessed it. Me. Ambitious.
P-haaaaa!!!!!

Hmmm...... :scared:
 
If you guys want a clue, just ask!

Do you want it written in Perl? Basic? C++? JavaScript? Java? Lisp? COBOL? (Okay, not the last two)

Here's a hint: Think about the letters' positions in the alphabet.
 
Originally posted by PostCode
24?

Hmmmm, let's check the Members list. Anyone called "24?" Anyone called Jeff Gordon? Hmmmm...nope.

You have the right Idea. Go to the members list and find a match...
 
Originally posted by bitchen
If you guys want a clue, just ask!

Do you want it written in Perl? Basic? C++? JavaScript? Java? Lisp? COBOL? (Okay, not the last two)

Here's a hint: Think about the letters' positions in the alphabet.

yeth, I want the anther written in Visual Bathic or Javathcript... pleath.
 
Originally posted by Spirit


Okay..... um... BigDadday???

No having lives, okay?

:spin:

and how the heck.... I never woulda guessed it. Me. Ambitious.
P-haaaaa!!!!!

Hmmm...... :scared:

Morning and hey good luck and hope you get it as well. BD :wave:
 
Originally posted by flavio
(Z - G) cat (ASC('D') -64)

(26 - 7) cat (68 - 64)

(19) cat (4)

S4

Correct answer! You went too far with the left side:

Z-G = 26th pos - 7th pos = 19th pos = S
-or- Z-G = S

S cat 68-64 = S cat 4 = S4

Very well done.
 
Originally posted by BigDadday

Morning and hey good luck and hope you get it as well. BD :wave:

Thanks, BD :) Good afternoon to ya :wave:


O.k.. now, bitchen? I never woulda guessed that... *ugh*. If it were more Sesame Streetish I might-a. :D :spin:

Hey flavio.... come out and plaaaeeeeaaaaayy........ :D
 
Originally posted by krusty
yeth, I want the anther written in Visual Bathic or Javathcript... pleath.

Just for acedemic sake:

(Z - G) cat (ASC('D') -64)

' VisualBasic Clue
' by bitchen for krusty

'get the numeric offset for capital alphabet
offset = asc("A") - 1 'subtract 1 so "A" is in position 1

string1 = chr( (asc( "Z") - offset) - (asc( "G") - offset) )
string2 = asc("D") - 64
print string1 & string2 & vbCrLf
 
Back
Top