Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.nciatronTg.shankshock.foobar;
- import java.util.Scanner;
- public class Main {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner input = new Scanner(System.in);
- String answer;
- System.out.println("Are you gay? \n");
- answer = input.nextLine();
- if (answer.equalsIgnoreCase("Yes")) {
- System.out.println("Penis");
- } else if (answer.equalsIgnoreCase("No")){
- System.out.println("Are you sure sure?");
- Scanner confirmation = new Scanner(System.in);
- String foobar = confirmation.nextLine();
- if (foobar.equals("Yes"))
- {
- System.out.println("Fookies!");
- } else {
- System.out.println("Not fookies!");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment