CJCoding With Joseph

Index of a Value

Read a line of space-separated integers, then read a target integer on the next line. Print the index of the first element equal to the target, or -1 if the target is not present. For the input 3 7 1 9 4 then 9, print:

3

Expected Output:

3
Topics:
Arrays
๐Ÿ“ฅ Auto-Input:
3 7 1 9 4\n9\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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.