Lab 014 Lab Java 4 Question 3

preview_player
Показать описание
CODING dalam comment!

Song used:

--------------------------------------------------------------------------------------------

Title: Midnight Snack
Type of music: Retro Hip Hop
Mood: Vintage

--------------------------------------------------------------------------------------------

#aimanqm #aiman_qm #javalab
Рекомендации по теме
Комментарии
Автор

CODING:

import java.util.Scanner;
public class PracticalLab4q3 {

public static void main(String[] args) {
int[] id = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
String[] employee = {"Aiman", "James", "Michael", "Obama", "Michel", "John", "Wick", "King", "Johny", "Deph"};
int input;

Scanner in = new Scanner (System.in);
System.out.println("Enter an ID number: ");
input = in.nextInt();

for(int i=0; i<id.length; i++){
if(input == id[i]){
System.out.println("ID number " + id[i] + " is " + employee[i]);
}
}
}
}

aimanqm
welcome to shbcf.ru