Hallo Leute,
ich hoffe es gibt hier jemanden der mir helfen kann..w enigstens ein wenig.
Ich muss ein java-Programm schreiben mit IF & ELSE. Es geht darum:
Ich schreibe ein 4-Buchstaben-Wort und das Programm sagt mir: Das Wort xxxx ist ein 4-Buchstaben-Wort.
Beispiel:
Enter a Word: Haus
The Word "Haus" is just a four letter Word.
oder
Enter a Word: das
The Word "das" is not a four-letter Word.
Ich hoffe ihr versteht wie ich das meine. Ich hänge einfach fest. AAAhhh..
1 import java.util.*;
2 public class PattersonP3 {
3 public static void main(String[]args){
4 final long MaxLength = 3;
5 Scanner stdin = new Scanner(System.in);
6 System.out.print("Enter a word: ");
7 long input = stdin.nextLong();
8 long word = input;
9
10 if (input == MaxLength) );
11 System.out.println("The word " + input + " is just four-letter word.");
12 }
13 else{((input > 4)||(input < MaxLength);
14 System.out.println("The word " + input + " is not a four-letter word.");
15 }
16 }
17
18
Kann mir jemand helfen ??
Vielen Dank im Voraus.
Jacqueline
Ja27cky78 Gast |