Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. package blablah;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class main {
  6.  
  7. String response = "";
  8.  
  9. public main() {
  10.  
  11.  
  12. }
  13.  
  14. public void userAuth() {
  15.  
  16. }
  17.  
  18. public void menu() {
  19. Scanner sc = new Scanner(System.in);
  20.  
  21. System.out.println("What's up nigga?");
  22.  
  23. response = sc.next();
  24.  
  25. System.out.println("A " + response);
  26. }
  27.  
  28. public static void main(String[] args) {
  29.  
  30. String response = "";
  31. main fish = new main();
  32. fish.menu();
  33.  
  34.  
  35. }
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement