int type

int type is a signed 32-bit type that has a range from -2,147,483,648 to 2,147,483,647.


public class Main {

  public static void main(String[] args) {
    int i = 10;
    int j = 10;
    
    System.out.println(i+j);
  }
}

The output:


20
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.