私はJava(コンソールベース)の配列を持っており、ユーザーが入力した位置の1つに格納されている詳細を表示したいと思います。たとえば、コンソールアプリケーションに「3」と入力し、プログラムは要求に一致する詳細で応答します。Java(コンソール)の特定の配列位置を表示する
ありがとうございます!
if(input.matches("S")){
// If user input matches with S, then the user willSSN be asked to enter a array position and then the corresponding information will be shown
KeyStroke[] patientsDetails = new KeyStroke[5];
patientsDetails[0] = new KeyStroke(9,"OX5BJM","Peter",2039489);
patientsDetails[1] = new KeyStroke(12,"OX1BOL","Kim",2434587);
patientsDetails[2] = new KeyStroke(67,"OX2VBN","Patrick",2233842);
patientsDetails[3] = new KeyStroke(34,"OX2XHB","Liam",2432340);
patientsDetails[4] = new KeyStroke(54,"OX3BUN","Bob",2234098);
System.out.println("Enter an array postion from 0 to 4 to show paitients corresponding postion and details");
number1 = enterNumber0.nextInt();
if (input.matches("0")){
System.out.println(patientsDetails[0]);
}
これはプログラムの一部です。私の仕事に特有の質問をすることの問題が何であるか分かりません。 –
その基本的な質問は、勉強や研究の努力がないことを示します –