字符串

时间:2016-10-17 22:30:41

标签: java string position character

我希望SO可以帮助我处理我的问题。我有这段代码:

public static void main(String[] args) {
    Scanner scanner=new Scanner(System.in);

    System.out.print("Enter a string:\t");
    String word = scanner.nextLine();

    System.out.print("Enter a character:\t");
    String character = scanner.nextLine();

    char charVar = 0;
    if (character.length() > 1) {
        System.err.println("Please input only one character.");
    } else {
        charVar = character.charAt(0);
    }

    int count = 0;
    for (char x : word.toCharArray()) {
        if (x == charVar) {
            count++;
        }
    }

    System.out.println("Character " + charVar + " appears " + count + 
                       (count == 1 ? " time" : " times"));
}

因此,此代码要求用户输入一个字符串,然后它要求用户输入一个字符,程序将告诉用户该特定字符出现的次数。我的问题是我需要转换这个代码,所以它仍然会要求用户输入字符串,但不会要求一个字符。它将要求用户输入一个数字。然后程序将显示字符串中该位置的字符。示例:假设他们输入" string"然后2为数字,程序将显示字符" r"。所以我的问题基本上是否有人可以给我一个如何实现这一点的想法。任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);

        System.out.print("Enter a string:\t");
        String word = scanner.nextLine();

        System.out.print("Enter an integer:\t");
        int index = scanner.nextInt();

        System.out.println("Character at position " + index + ": " + word.charAt(index));
    }