728x90
class RangeClass{
int[] makeRange(int lower, int upper) {
int arr[] = new int[(upper-lower)+1];
for(int i=0; i<arr.length; i++)
arr[i] = lower++;
return arr;
}
}
public class ExerciseCh5_9_3 {
public static void main(String[] args) {
int[] theArray;
RangeClass theRange = new RangeClass();
theArray = theRange.makeRange(1, 10);
System.out.print("The array : [");
for(int i=0; i<theArray.length; i++)
System.out.print(theArray[i] + " ");
System.out.println("]");
}
}
반응형
'전.java' 카테고리의 다른 글
메소드 중복 (0) | 2021.02.08 |
---|---|
Garbage 클래스 (0) | 2021.02.08 |
최대공약수, 최소공배수 (method) (0) | 2021.02.08 |
Count 클래스 (0) | 2021.02.08 |
스택 클래스 (Stack) (0) | 2021.02.08 |