-3
文字列を指定すると、新しい文字列が作成され、元の文字列。指定された配列の1文字おきに作成された新しい文字列を作成して返します
public static String everyOther(String str) {
String result = "";
for (int i=0; i<A.length; i+=2){
result = result + str.charAt(i);
}
System.out.println(result);
return result;
}
public static void main(String[] args) {
String G = "abcdefghijklmnopqrstuvwxyz";
System.out.println(everyOther(G));
}
そして質問は... – Aldeguer
for(int i = 0; i
あなたの質問をより明確にし、あなたがしたいこと、あなたが何をしたのか、プログラムが何をしているのかを説明してください。投稿を編集して詳細を追加します。 [レビューから](https://stackoverflow.com/review/first-posts/17502049) – LW001