โ Back to Arrays
Question 389
Linear Search for a Value
Linear Search for a Value
The array{4, 8, 15, 16, 23, 42}is given. Read a single integer target from standard input, then print the index of its FIRST occurrence, or-1if the target is not in the array. For example, if the input is16, print: 3 If the target does not appear (for example99), print-1. Indices start at0.
Expected Output:
3
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.