0

Thinsは私がこれまで持っているものです。しかし、配列を使用せずに、if ステートメントと else ステートメントで文字列のみを使用して、4 つの単語すべてをアルファベット順に並べ替える必要があります。

    import java.util.Scanner;

public class Dictionary
{
    public static void main (String[] args)
    {
        String word1, word2, word3, word4;
        Scanner scan = new Scanner (System.in);

        System.out.println ("Enter Four Words: ");
        word1 = scan.next();
        word2 = scan.next();
        word3 = scan.next();
        word4 = scan.next();

        int compare = word1.compareTo(word2);

        if (compare < 0)
        {System.out.println(word1 + " " + word2);}
    else if (compare > 0)
        {System.out.println(word2 + " " + word1);}           
    }
}
4

3 に答える 3