Search:

Type: Posts; User: chronoz13

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    1,679

    [SOLVED] Re: Increment Statements Difference

    hmmm in my program actually, the game program im writing, there is a method that keeps track of the movement of my animations which has a variable x..

    public void theMethod() {
    x += .1;
    }
    ...
  2. Replies
    4
    Views
    1,679

    [SOLVED] Increment Statements Difference

    i was wondering whats the difference between the two
    int x = 0;

    x += .1;

    x = x + .1;

    given that x is an integer type
Results 1 to 2 of 2