string中字符索引的问题
public class StringIndex {
public static void main(String[] args){
String word="we are the champion";//定义字符串
System.out.println("we are the champion的奇数字符索引为:");
for(int i=0;i<word.length();i++){
if(i%2==1){
System.out.print(word.charAt(i)+" ");
}
}
}
}
为什么运行后结果中字符串中的w不 是奇数索引的