将用户输入存储在字符串数组中

我是java初学者。我尝试编写一个程序来从命令行参数中读取一系列单词,并找到给定单词的第一个匹配项的索引。喜欢用户可以输入“我爱苹果”,给定的词是“苹果”。程序将显示“'apple' 第一个匹配项的索引为 2”。


到目前为止我所做的不起作用。这是我将输入存储到字符串数组中的方式不正确吗?


import java.util.Scanner;


public class test {

    public static void main(String [] args) {


        System.out.println("Enter sentence: ");


        Scanner sc = new Scanner(System.in);


        String input = sc.nextLine();


        int num=1;

        String sentence[]=new String[num];


        for(int i=0; i< num; i++) {


          sentence[i] = input; // store the user input into the array.

          num = num+1;

        }



        System.out.println("Enter the given words to find the index of its first match: ");

        Scanner sc2 = new Scanner(System.in);

        String key = sc2.next(); 


        for(int j=0; j<num; j++) {

            while (sentence[j].equals(key)) {

                System.out.println("The index of the first match of "+key+" is "+j);

            }

        }

    }   

}


尚方宝剑之说
浏览 196回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java