我想访问我的数组中的某个值,该值被分配用于运行我的代码的特定部分。例如,如果我的数组由数字 1 到 6 组成,其中每个数字都分配给通过键盘输入的变量,该变量运行我的代码的一部分,我将如何实现它?到目前为止,我只需要...
public class yTerminal {
public static void main(String[] args)
{
screen.println("Press key to access function: ");
screen.println("1 - Open \n2 - Close \n3 - Help \n"
+ "4 - Internet \n5 - Call \n6 "
+ "- Go");
int[] numberInput = new int[5];
int i;
for (i=1; i < 7; i++)
numberInput[i] = keyboard.readInt("Enter key corresponding to function: ");
}
}