Guest User

Untitled

a guest
Dec 14th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class static1
  2. {
  3. public static void main(String[]L)
  4.  
  5. {
  6.  
  7. if (L.length==0)
  8. System.err.println("Error!");
  9.  
  10. else
  11. {
  12. if (L[0].equalsIgnoreCase("add") )
  13. {
  14.  
  15. System.out.println("Ok you want to add");
  16.  
  17. }
  18.  
  19. else
  20. {
  21. if (L[0].equalsIgnoreCase("mult") )
  22. {
  23.  
  24. System.out.println("Ok you want to mult");
  25.  
  26. }
  27.  
  28. else
  29. System.out.println("Error!");
  30.  
  31.  
  32. }
  33. }
  34. }
  35. }
Add Comment
Please, Sign In to add comment