Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package Saetze;
  2.  
  3. public class Uebung1 {
  4. public static void main(String[] args){
  5. String s1 = "Geschlecht";
  6. String s2 = "Alter";
  7. String s3 = "Augenfarbe";
  8. String s4 = "Haarfarbe";
  9. String s5 = "Groeße";
  10.  
  11.  
  12. System.out.println("Der Verdächtige ist ein(e) " + s1 + " Er/Sie ist " + s2 + " Jahre alt,hat " + s3 + " Augen, " + s4 + " Haar und ist " + s5 + " cm groß.");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement