fork(4) download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String s = new String("123456789");
  9. java.util.zip.CRC32 crc32 = new java.util.zip.CRC32();
  10. crc32.update(s.getBytes());
  11. System.out.println(crc32.getValue());
  12. }
  13. }
Success #stdin #stdout 0.03s 245632KB
stdin
Standard input is empty
stdout
3421780262