1. ホーム
  2. java

[解決済み] 文字列がcharに変換できません。[クローズド]

2022-02-17 16:07:34

質問

非互換の型と書かれています。文字列はchar"に変換することができません。 どうすれば直るのでしょうか? 以下はその例です。

解決方法は?

これはあなたの解決策です。

public class NewMain {
    public static void main(String args[]) throws ParseException {
        Scanner s = new Scanner(System.in);
        char yes;
        do {
            System.out.println("Hi");
            yes = s.next().charAt(0);
        } while (yes == 'Y'); // if u enter 'Y' the it will continue

    }
}

を入力して終了します。 'Y'