求2的32次方
-----------------------------------------------------------------------------
普通程序员
System.out.println(Math.pow(2, 32));
------------------------------------------------------------------------------
文艺程序员
System.out.println(1L<<32);
------------------------------------------------------------------------------
2B程序员
System.out.println(2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2);
-----------------------------------------------------------------------------
普通程序员
System.out.println(Math.pow(2, 32));
------------------------------------------------------------------------------
文艺程序员
System.out.println(1L<<32);
------------------------------------------------------------------------------
2B程序员
System.out.println(2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2);