Advertisement
nicatronTg

Untitled

Nov 20th, 2011
59
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.         {
  19.             System.out.println("Penis");
  20.         } else {
  21.             System.out.println("Cocks");
  22.         }
  23.     }
  24.  
  25. }
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement