package lang;

class Integer00 {
  public static void main(String[] args) {
    print("MAX_VALUE="+Integer.MAX_VALUE);
    print("MIN_VALUE="+Integer.MIN_VALUE);
    print("SIZE="+Integer.SIZE);
  }
  private static void print(String s) {
    System.out.println(s);
  }
}

==
・目次 - Java言語プログラミング入門
  http://blogs.yahoo.co.jp/artery2020/39975776.html
・目次 - ビジネスパーソンの常識と非常識
  http://blogs.yahoo.co.jp/artery2020/39728331.html
・目次 - 論理・発想・思考についての考察と鍛え方
  http://blogs.yahoo.co.jp/artery2020/39657784.html
==