どのように私はmultispellの配列に文字列配列と文字列を返すのですか?

リップスティック:

以下のメインを使用して、与える方法作成しString[]た結果を。マルチ呪文の配列を印刷するには、メインのループを記述してください。

public static void main(String[] args) {
// Create array here

// use your array to create new array here 
String[] multispell = Attack(“your array”, “ball”);

出力:

Cast Fire ball!!!
Cast Ice ball!!!
Cast Earth ball!!!
Cast Lightning ball!!!
Cast Wind ball!!

私のプログラム:

public class Paper {
    public static void main (String args[]) {

        String[] kind = new String[5];

        String [] multispell = Attack4 ( kind , "ball" );

        for (int i = 0 ; i< multispell.length ; i++) {

            System.out.println ("Cast " + multispell[i]+ "!!!");

    }   
    }

    public static String[] Attack4() {
        String [] kind111 = {"Fire", "Ice", "Earth", "Lightning", "Wind"};
        return kind111 ;

    }
}
アフメットOZKESEK:

これは、あなたが探しているものですか?

public static void main(String[] args) {

    String[] kind = new String[] {
        "Fire", "Ice", "Earth", "Lightning", "Wind"
    };

    String[] multispell = Attack(kind, "ball");
    for (int i = 0; i < multispell.length; i++) {
        System.out.println("Cast " + multispell[i] + "!!!");
    }

}

public static String[] Attack(String[] orig, String attach) {
    String[] result = new String[orig.length];
    for (int i = 0; i < orig.length; i++) {
        result[i] = orig[i] + " " + attach;
    }
    return result;
}

おすすめ

転載: http://10.200.1.11:23101/article/api/json?id=394576&siteId=1