我试图弄清楚如何使用字符换行来根据用户输入来改变字符串。如果字符串是“Bob 喜欢建造建筑物”并且用户输入“b”,我必须将输出更改为小写和大写字母 bs。
这是它必须添加的内容:
System.out.print("\nWhat character would you like to replace?");
String letter = input.nextLine();
System.out.print("What character would you like to replace "+letter+" with?");
String exchange = input.nextLine();