Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main {
  3.  
  4.  
  5. public static void main(String[] args) {
  6.  
  7. Encapsulation obj = new Encapsulation();
  8. System.out.println("please input: ");
  9. Scanner sc = new Scanner(System.in);
  10.  
  11. String answer = sc.nextLine();
  12.  
  13.  
  14. System.out.println(obj.determine(answer));
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement