最大值+1 變成最小值 * 最小值-1 變成最大值

<p>package com.javabase.firstDay;</p> <p>public class SimpleDemo001 {</p> <p>&#160;&#160;&#160; /** <br />&#160;&#160;&#160;&#160; * 任何一種數據類型,都有其最大值的取值 <br />&#160;&#160;&#160;&#160; * 最大值+1 變成最小值 <br />&#160;&#160;&#160;&#160; * 最小值-1 編程最大值 <br />&#160;&#160;&#160;&#160; * @param args <br />&#160;&#160;&#160;&#160; */ <br />&#160;&#160;&#160; public static void main(String[] args) { <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; int max = Integer.MAX_VALUE; // 獲取整形的最大值 <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; int min = Integer.MIN_VALUE; // 獲取整形的最小值 <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println(&quot;max:&quot; + max); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println(&quot;max+1後:&quot; + (max + 1) + &quot; ,變成了最小值&quot;); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println(&quot;min:&quot; + min); <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; System.out.println(&quot;min-1後: &quot; + (min - 1) + &quot; ,變成了最大值&quot;); <br />&#160;&#160;&#160; }</p> <p>} </p>java

相關文章
相關標籤/搜索