/*4. 编写一个程序,将下面的一段文本中的各个单词的字母顺序翻转,
“To be or not to be",将变成"oT eb ro ton ot eb."。
分析:1,需定义一个String类型的名字赋值为"To be or not to be"
2,String[] split(String str) 按照括号里的内容对字符串进行切割
3,定义一个新的String类接收新的字符
* */
String shu="To be or not to be";
String[] split = shu.split(" ");//将shu 字符串转换成数组类型按" "切割 切割后的数组角标0就是To 角标2就是be
String z="";//定义一个字符串类型的变量接收最后新的字符串
char[] arry = string5.toCharArray();
int count = 0;
int sum=0;
for (int a = 0; a < arry.length; a++) {
int indexOf = string5.indexOf("bcb", a);
sum=indexOf;
if (indexOf == a) {
System.out.print(indexOf);
count++;