See More

/* Return an int array length 3 containing the first 3 digits of pi, {3, 1, 4}. */ public int[] makePi() { int[] nums = {3, 1, 4}; return nums; }