Thread: C++ Word equivalent to number???

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    3

    C++ Word equivalent to number???

    How do you do the foolowing in the C ++.
    If I put 5.23 it will output Five and 23/100

    Thanks.

  2. #2
    Registered User Liam Battle's Avatar
    Join Date
    Jan 2002
    Posts
    114
    HAHAHAHA
    hey bud when is your homework assignment due?

    ill post it when its late
    LB0: * Life once school is done
    LB1: N <- WakeUp;
    LB2: N <- C++_Code;
    LB3: N >= Tired : N <- Sleep;
    LB4: JMP*-3;

  3. #3
    Pygmy Monkey ErionD's Avatar
    Join Date
    Feb 2002
    Posts
    408
    >ill post it when its late

    Lol

  4. #4
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    here's a hint:
    multiply that number by 10 until it's an integer
    get the denominator from the above step
    you now have a fraction. divide the numerator into the denominator: the integer part is the whole number, and your new numerator is the remainder

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. seg fault at vectornew
    By tytelizgal in forum C Programming
    Replies: 2
    Last Post: 10-25-2008, 01:22 PM
  2. Issue w/ Guess My Number Program
    By mkylman in forum C++ Programming
    Replies: 5
    Last Post: 08-23-2007, 01:31 AM
  3. Replies: 7
    Last Post: 06-16-2006, 09:23 PM
  4. Assembly Tutorials
    By JoshR in forum A Brief History of Cprogramming.com
    Replies: 13
    Last Post: 06-11-2005, 09:56 AM
  5. Wrong Output
    By egomaster69 in forum C Programming
    Replies: 7
    Last Post: 01-28-2005, 06:44 PM