//メインメソッド
public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Result cal = new Result(); cal.getArray(); cal.display(); } }
//
public class Result { int i = 0; int[] getArray() { int[] array = new int[11]; for(int i = 1;i < 11;i++){ array[i] = (i * 9); } return array; } void display() { Result re = new Result(); System.out.print(); } }
計算結果を配列に設定するメソッドと結果を表示するメソッドを分けて作成したいです。
displayメソッドで表示したいのですが、どのようにしてmainメソッドから受け取ればよろしいでしょうか。
どなたかご教授お願いします。
想定している表示は
9 18 27 36 45 54 63 72 81 90
です。
回答1件
あなたの回答
tips
プレビュー