CJCoding With Joseph

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 -1 if the target is not in the array.

For example, if the input is 16, print:

3

If the target does not appear (for example 99), print -1. Indices start at 0.

Expected Output:

3
Topics:
Arrays
๐Ÿ“ฅ Auto-Input:
16\n
This input is automatically fed to your program's stdin
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.