Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. import static java.lang.System.*;
  2. import java.util.Random;
  3. import java.util.Scanner;
  4.  
  5. public class halo {
  6.  
  7.    
  8.     public static void main(String[] args)
  9. {
  10. Scanner myScanner = new Scanner(in);
  11. String reponse;
  12. do{
  13.     out.println("Voulez-vous dire bonjour? (Oui/Non)");
  14.     reponse = myScanner.next();
  15.   } while (!(reponse.equals("Oui") && reponse.equals("Non")));
  16.  
  17.     if(reponse.equals("Oui"))
  18.     {
  19.         out.print("C'est bien, vous êtes poli !");
  20.     }
  21.    
  22.     else {
  23.         out.print("Vous êtes un connard !");
  24.     }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement