Turning a negative number into a positive

Ask a Question related to Adobe Flash, Flex & Director, Design and Development.

  1. #1

    Default Turning a negative number into a positive

    Hi, how can I turn a number such as -5 into +5

    e.g. I have a variable:

    myVar = -5

    how can I turn that into:

    myVar = +5

    I'm sure there's an easy way to turn a negative into a positive

    Cheers

    ----------------------------------------------

    [url]www.crazyrichie.net[/url]



    Richard Atkins Guest

  2. Similar Questions and Discussions

    1. #39610 [NEW]: Number of return Modular_arithmetic is negative..
      From: ocracy at msn dot com Operating system: windows PHP version: 4.4.4 PHP Bug Type: *General Issues Bug description: ...
    2. WebService Proxy Error: Positive number required
      We are attempting to utilize a J2EE\IBM WSA webservice and on the oneway method call I get the following exception ...
    3. Negative image to positive (color) ????
      I've scanned a color negative. On page 186 of the manual, it explains the INVERT feature, but states it only works for B&W negatives. Is it not...
    4. Converting a color negative .jpg to a color positive image .jpg in Photoshop Elements 2.0
      My scanner will convert color photo negatives to a positive image which I can then adjust using Photoshop Elements. However, it is much faster to...
    5. turn negitive number into positive
      I have a number being returned to me. What ever the number is, I need to transform it into a positive number. I'm trying to create a serial number...
  3. #2

    Default Re: Turning a negative number into a positive

    aVar = -5;
    trace(aVar);
    bVar = Math.abs(aVar);
    trace(bVar);

    hth

    "Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
    news:c0ak3r$6nh$1@forums.macromedia.com...
    > Hi, how can I turn a number such as -5 into +5
    >
    > e.g. I have a variable:
    >
    > myVar = -5
    >
    > how can I turn that into:
    >
    > myVar = +5
    >
    > I'm sure there's an easy way to turn a negative into a positive
    >
    > Cheers
    >
    > ----------------------------------------------
    >
    > [url]www.crazyrichie.net[/url]
    >
    >
    >

    Jack Guest

  4. #3

    Default Re: Turning a negative number into a positive

    cheers jack,

    I actually found if I do this it's even simpler:

    myVar = -5

    myVar = myVar*-1

    myVar would then = +5

    Rich


    "Jack" <jackleaman@hotmail.com> wrote in message
    news:c0aktj$7s8$1@forums.macromedia.com...
    > aVar = -5;
    > trace(aVar);
    > bVar = Math.abs(aVar);
    > trace(bVar);
    >
    > hth
    >
    > "Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
    > news:c0ak3r$6nh$1@forums.macromedia.com...
    > > Hi, how can I turn a number such as -5 into +5
    > >
    > > e.g. I have a variable:
    > >
    > > myVar = -5
    > >
    > > how can I turn that into:
    > >
    > > myVar = +5
    > >
    > > I'm sure there's an easy way to turn a negative into a positive
    > >
    > > Cheers
    > >
    > > ----------------------------------------------
    > >
    > > [url]www.crazyrichie.net[/url]
    > >
    > >
    > >
    >
    >

    Richard Atkins Guest

  5. #4

    Default Re: Turning a negative number into a positive


    "Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
    news:c0aujn$nm6$1@forums.macromedia.com...
    > cheers jack,
    >
    > I actually found if I do this it's even simpler:
    >
    > myVar = -5
    >
    > myVar = myVar*-1
    >
    > myVar would then = +5
    >
    > Rich
    >
    even simpler :-)
    aVar = Math.abs(-5); trace(aVar);

    Math.abs is a built-in Math function that computes
    and returns an absolute value for the number specified

    hth


    Jack Guest

  6. #5

    Default Re: Turning a negative number into a positive

    nice one, cheers

    "Jack" <jackleaman@hotmail.com> wrote in message
    news:c0b1g0$s9e$1@forums.macromedia.com...
    >
    > "Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
    > news:c0aujn$nm6$1@forums.macromedia.com...
    > > cheers jack,
    > >
    > > I actually found if I do this it's even simpler:
    > >
    > > myVar = -5
    > >
    > > myVar = myVar*-1
    > >
    > > myVar would then = +5
    > >
    > > Rich
    > >
    >
    > even simpler :-)
    > aVar = Math.abs(-5); trace(aVar);
    >
    > Math.abs is a built-in Math function that computes
    > and returns an absolute value for the number specified
    >
    > hth
    >
    >

    Richard Atkins Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139