View difference between Paste ID: ypdA8322 and Pex1urAR
SHOW: | | - or go back to the newest paste.
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");
15+
		System.out.println("Are you gay? \n");
16-
    	answer=input.nextLine();
16+
		answer = input.nextLine();
17-
    	if (answer.equalsIgnoreCase("Yes"))
17+
		if (answer.equalsIgnoreCase("Yes")) {
18-
    	{
18+
			System.out.println("Penis");
19-
    		System.out.println("Penis");
19+
		} else if (answer.equalsIgnoreCase("No")){
20-
    	} else {
20+
			System.out.println("Are you sure sure?");
21-
    		System.out.println("Cocks");
21+
			Scanner confirmation = new Scanner(System.in);
22-
    	}
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