Advertisement
nicatronTg

Untitled

Nov 20th, 2011
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. /**
  2.  * @(#)Convo.java
  3.  *
  4.  *
  5.  * @author
  6.  * @version 1.00 2011/11/20
  7.  */
  8.  
  9. import java.util.*;
  10. public class Convo
  11.  
  12. {//First Bracket
  13.  
  14. public static void main (String args[])
  15.  
  16.     {//2nd Bracket
  17.  
  18.         Scanner input = new Scanner(System.in);
  19.         String answer;
  20.  
  21.         System.out.println("Question 1");
  22.         answer=input.nextLine;
  23.         if (answer.equals("Yes"))
  24.             System.out.println("Penis");
  25.  
  26.     }//2nd Bracket
  27.  
  28. }//First Bracket
  29.  
  30.  
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement