fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.Servlet.*;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. String input = null;
  14. input = request.getParameter("input");
  15. if(Integer.valueOf(input).intValue() > 3){
  16. System.out.print("over 3");
  17. }else{
  18. System.out.print("under 3");
  19. }
  20. // your code goes here
  21. }
  22. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:6: error: package java.Servlet does not exist
import java.Servlet.*;
^
Main.java:14: error: cannot find symbol
        input = request.getParameter("input");
                ^
  symbol:   variable request
  location: class Ideone
2 errors
stdout
Standard output is empty