Advertisement
Guest User

Untitled

a guest
May 25th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package emotions;
  2.  
  3. import java.util.Scanner;
  4.  
  5.  
  6. public class Emotions {
  7.  
  8. public static void main(String[] args) {
  9.  
  10.  
  11. Scanner Gefühl = new Scanner(System.in);
  12.  
  13.  
  14.  
  15.  
  16. for(int i = 0; i < 2; i++){
  17. System.out.println("Wie geht es dir");
  18. String Emotion = Gefühl.nextLine();
  19.  
  20. if (Emotion.equals("gut"))
  21. System.out.println("Das ist ja toll das es dir gut geht");
  22. else if (Emotion.equals("schlecht"))
  23. System.out.println("Das ist ja blöd das es dir schlecht geht");
  24. Gefühl.close();
  25. }
  26.  
  27.  
  28.  
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement