fork download
  1. class Bits
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. System.out.println( Integer.bitCount(6) );
  6.  
  7. System.out.println( Integer.bitCount(-6) );
  8. }
  9. }
Success #stdin #stdout 0.1s 320512KB
stdin
Standard input is empty
stdout
2
30