-3

コンソールで文字列を記述し、配列と比較するためのコードが必要です。

String Array = {"skill"};
Console co=System.console();

次に、Arrayをco..と比較します。

4

1 に答える 1

5

キーボードから文字列を読み取り、その文字列を別の文字列と比較する例を次に示します。

import java.util.Scanner;
public class Main
{
    public static void main(String args[])
    {
        String input = null;
        String compareString = "hello world";
        Scanner inputReader = new Scanner(System.in);
        System.out.println("please enter: hello world" );

        // here is how you take the input from keyboard

        input = inputReader.nextLine();
                // this is how you write to console
        System.out.println("You entered :" + input);

        //Here is how you compare two string
        if(compareString.equals(input))
        {
            System.out.println("input is: hello world");
        }
        else
        {
            System.out.println("input is not: hello world");
        }
    }
}      

実行1:

Please enter: hello world

入力:

hello world

出力:

You entered :hello world
input is: hello world

実行2:

Please enter: hello world

入力:

hello

出力:

You entered :hello 
input is not: hello world
于 2012-12-12T10:26:10.670 に答える