コードの特定の部分を実行するために割り当てられた配列内の特定の値にアクセスしたいと思います。たとえば、配列が 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: ");
}
}