โ Back to Arrays
Question 390
Index of a Value
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-1if the target is not present. For the input3 7 1 9 4then9, print: 3
Expected Output:
3
Topics:
Arrays
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.