nicatronTg

Untitled

Nov 20th, 2011
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package com.nciatronTg.shankshock.foobar;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.  
  7.     /**
  8.      * @param args
  9.      */
  10.     public static void main(String[] args) {
  11.         // TODO Auto-generated method stub
  12.         Scanner input = new Scanner(System.in);
  13.         String answer;
  14.  
  15.         System.out.println("Are you gay? \n");
  16.         answer = input.nextLine();
  17.         if (answer.equalsIgnoreCase("Yes")) {
  18.             System.out.println("Penis");
  19.         } else if (answer.equalsIgnoreCase("No")){
  20.             System.out.println("Are you sure sure?");
  21.             Scanner confirmation = new Scanner(System.in);
  22.             String foobar = confirmation.nextLine();
  23.             if (foobar.equals("Yes"))
  24.             {
  25.                 System.out.println("Fookies!");
  26.             } else {
  27.                 System.out.println("Not fookies!");
  28.             }
  29.         }
  30.     }
  31.  
  32. }
  33.  
  34.  
Advertisement
Add Comment
Please, Sign In to add comment