Page 6391 of 7207 FirstFirst ... 53915891629163416381638963906391639263936401644164916891 ... LastLast
Results 63,901 to 63,910 of 72066

Thread: The Chat Thread

  1. #63901
    Crimson Balrog PhoenixRider's Avatar
    Join Date
    Jul 2006
    Posts
    4,590

    Default

    Quote Originally Posted by KittySamurai View Post
    i have a huge project due in 12 hours that's not even close to working

    what are you working on right now, i'll distract myself and help you
    Convert each of the number of the birth day, birth month and birth year to a single digit number.

    Values already consisting of a single digit need not be converted. (For example birth month = 1). Values consisting of more than one digit are broken into individual digits and added together. For example birth month = 11 is split into 1 + 1 = 2.

    If the resulting sum consists of multiple digits then the process of breaking a number down into individual digits and adding them together is repeated until a single digit number is derived. For example birth year = 1977 becomes 1 + 9 + 7 + 7 = 24 and 24 is split into 2 + 4 = 6. This is now a single digit so no more is converting needed
    Add the three single digits.

    For example, birth date: 11/17/1972 Reduced to single digits yields: 2, 8, 1 (previous step). Adding these digits = 2 + 8 + 1 = 11 (this step)
    Reduce this sum to single digit to yield the life path number.

    Continuing the previous example: 11 = 1+ 1 = 2
    My assignment is due on friday, I haven't started but as usual I'll start on it tonight, get frustrated tomorrow and at the last day I get help and hand it in. As for you, get help from the TA.

  2. #63902
    butts FailFTW's Avatar
    Join Date
    Oct 2008
    Location
    Arizona
    Posts
    5,716

    Default

    Oh boy, that looks like you'll be messing with strings.

    That's a *****.
    Butts.

    213 181 178 166 165 164 162 152 147 135 134 130 125 123 123 120 120 104 100 100

  3. #63903
    Crimson Balrog PhoenixRider's Avatar
    Join Date
    Jul 2006
    Posts
    4,590

    Default

    Quote Originally Posted by FailFTW View Post
    Oh boy, that looks like you'll be messing with strings.

    That's a *****.
    I'll probably just take each individual number as a string, convert it to an integer and add it. Doesn't look too complicated, but kitty's **** seems intense.

  4. #63904
    stop trying
    Join Date
    Apr 2007
    Posts
    2,659

    Default

    Code:
    num1 = birth[0:2]
    num2 = birth[3:5]
    num3 = birth[6:10]
    total = 0
    
    
    while len(num1) != 1:
        for elem in num1:
            total += int(elem)
        num1 = str(total)
    etc, etc

    probably wrong but basically a lot of converting between ints and strings

    http://www.cdf.toronto.edu/~csc108h/...a2/index.shtml here's the page for my assignment, please buy me coke for suffering

  5. #63905
    Beginner OneSevenNine's Avatar
    Join Date
    Jan 2010
    Location
    Don't have a custom title so this space will have to do
    Posts
    30

    Default

    use recursion. *****es love recursion.

    Click the above free music i am so artist
    Spoiler!

  6. #63906
    We're in a heap o'trouble Tesiqurasa's Avatar
    Join Date
    Aug 2008
    Location
    Lincoln, NE
    Posts
    6,248

    Default

    One of my newer friends found out about Maple.

    I'll never live this down


    Spoiler!



  7. #63907
    Crimson Balrog PhoenixRider's Avatar
    Join Date
    Jul 2006
    Posts
    4,590

    Default

    dem recursions.

    Quote Originally Posted by KittySamurai View Post
    Code:
    num1 = birth[0:2]
    num2 = birth[3:5]
    num3 = birth[6:10]
    total = 0
    
    
    while len(num1) != 1:
        for elem in num1:
            total += int(elem)
        num1 = str(total)
    etc, etc

    probably wrong but basically a lot of converting between ints and strings

    http://www.cdf.toronto.edu/~csc108h/...a2/index.shtml here's the page for my assignment, please buy me coke for suffering
    What in the hell that page is ridiculous. Get to the point plox.

  8. #63908
    Too cool for bot zapping Clockwork's Avatar
    Join Date
    Jun 2009
    Location
    Some place
    Posts
    2,107

    Default

    Quote Originally Posted by Tesiqurasa View Post
    One of my newer friends found out about Maple.

    I'll never live this down
    Tell him it's how you meet grils.






    .......

  9. #63909
    We're in a heap o'trouble Tesiqurasa's Avatar
    Join Date
    Aug 2008
    Location
    Lincoln, NE
    Posts
    6,248

    Default

    But I still haven't attended the "how to talk to girls" panel.

    he'll never believe me


    Spoiler!



  10. #63910
    Beginner OneSevenNine's Avatar
    Join Date
    Jan 2010
    Location
    Don't have a custom title so this space will have to do
    Posts
    30

    Default

    Quote Originally Posted by Tesiqurasa View Post
    But I still haven't attended the "how to talk to girls" panel.

    he'll never believe me

    Click the above free music i am so artist
    Spoiler!

Similar Threads

  1. The Runescape Thread (well i hope thread)
    By ddlink in forum Tomato Island
    Replies: 34
    Last Post: 3rd June 2012, 01:36 AM
  2. The NFL Playoffs Thread/Superbowl Thread
    By jhtv in forum Tomato Island
    Replies: 15
    Last Post: 15th November 2011, 09:03 AM
  3. I believe thread...
    By Theisis in forum General Discussions
    Replies: 57
    Last Post: 11th January 2010, 10:06 AM
  4. The Pie Thread
    By silverchao in forum Tomato Island
    Replies: 147
    Last Post: 25th February 2009, 05:34 AM
  5. Stupid Patch MSN chat
    By CrunkBandit in forum General Discussions
    Replies: 0
    Last Post: 4th January 1970, 10:19 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •