gpt4 book ai didi

java - 打印字符串数组的替代元素

转载 作者:行者123 更新时间:2023-12-01 18:37:32 25 4
gpt4 key购买 nike

我在执行打印字符串数组的替代元素的代码时遇到问题。

我已经声明了一个字符串“welcome”,并且我想读取“W、l、o 等”等替代元素

//Print alternate elements of a string array.

public class AlternateStringArray {

public static void main(String[] args) {

String str[]= new string[] {"Welcome"};

for (int i=0; i<7; i+2){

System.out.println(str[i]);

}
}
}
<小时/>

收到以下错误:

Type mismatch: cannot convert from string[] to String[]

Type mismatch: cannot convert from String to string

Syntax error on token "+", invalid AssignmentOperator

请帮忙。

最佳答案

尝试:

String str = "Welcome";
char[] strChars = str.toCharArray();
for(int i = 0; i < strChars.length; i += 2) { // go through all the characters
System.out.println(strChars[i]);
}

关于java - 打印字符串数组的替代元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21283254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com