Recent content by completenewbie

  1. C

    Logic Puzzle: Finding the Appropriate Suffix for a Number

    I could also do this: A=answer X=Amod100 Y=Amod10 if X=11 or X=12 or X=13 then add "th" if Y>3 then add "th" if Y=0 then add "th" if Y=1 then add "st" if Y=2 then add "nd" if Y=3 then add "rd" The actual code will look different, but you get the idea. Thanks for steering me in the...
  2. C

    Logic Puzzle: Finding the Appropriate Suffix for a Number

    And the light goes on... ding. Thanks guys.
  3. C

    Logic Puzzle: Finding the Appropriate Suffix for a Number

    That theory doesn't seem to make sense to me: If X=11 Then X/10=1.1 If X=111 Then X/10=11 If X=33 Then X/10=3.3 If X=333 Then X/10=33 I guess I'm not following you, can you explain that agian.
  4. C

    Logic Puzzle: Finding the Appropriate Suffix for a Number

    I'm not following the "Take number and divide by then." part of the post. Can you clarify that a little? Thanks.
  5. C

    Logic Puzzle: Finding the Appropriate Suffix for a Number

    Hi, its my first post, so don't be too hard on me. Here's my dilemma: I'm trying to write a computer program, to return a number with it's apropriate suffix. (ie: 1=1st, 2=2nd, 3=3rd, etc.) Forget the programming aspect for a minute, all I'm interested in is the logic. If X=answer, I can...
Back
Top