fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4. import java.nio.charset.StandardCharsets;
  5. import javax.crypto.Cipher;
  6. import javax.crypto.spec.IvParameterSpec;
  7. import javax.crypto.spec.SecretKeySpec;
  8. import java.util.Base64;
  9.  
  10. class Tools
  11. {
  12.  
  13. public static void main (String[] args) throws java.lang.Exception
  14. {
  15.  
  16. System.out.println("Decoded: " + response);
  17. }
  18. }
Compilation error #stdin compilation error #stdout 0.25s 60468KB
stdin
Standard input is empty
compilation info
Main.java:16: error: cannot find symbol
        System.out.println("Decoded: " + response);
                                         ^
  symbol:   variable response
  location: class Tools
1 error
stdout
Standard output is empty