单词:courage---首次出现的角标23 提示: //1.分割单词时可一次进行//2.可以采用Map集合的键值对存储Map<String,Integer>map=newHashMap<String,Integer>();map.put("Hello",0);map.put("world",1);Set<Entry<String,Integer>>entrySet=wordCount.entrySet();for(Entry<String,Integer>entry:entrySet){System...