string中字符索引的问题

来源:2-3 Java 中 String 类的常用方法 Ⅰ

慕慕3083393

2015-11-22 23:51

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不 是奇数索引的

写回答 关注

1回答

  • 天启之魂
    2015-11-23 13:13:17

    w的角标是0.。。这是奇数吗。。。

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题