Solved Get highest int

Discussion in 'Plugin Development' started by ArthurHoeke, Mar 26, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    ArthurHoeke

    Helloo

    I need for my plugin to check 2 ints
    And how to check if the 1 is higher then the other?
     
  2. Offline

    spiroulis

    ArthurHoeke erm i dont know if thats whats you mean but you can check it like this:
    Code:java
    1. int one = 1;
    2. int two = 2;
    3.  
    4. if(one >= two){ //checking if one is equaled or higher than the two int
    5. }
     
    Hoolean likes this.
  3. Offline

    ArthurHoeke

    spiroulis This is exactly what i need! Thank you!
     
  4. Offline

    Zach_1919

Thread Status:
Not open for further replies.

Share This Page