慕慕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不 是奇数索引的
w的角标是0.。。这是奇数吗。。。
Java入门第三季
409792 学习 · 4340 问题
相似问题