CJCoding With Joseph

Linear Search

Read an integer N, then N integers into an array, then one more integer target. Search the array for target. If found, print 'Found at index K' (the first matching index). If not found, print 'Not found'.

Expected Output:

Found at index 2
Topics:
Arrays
๐Ÿ“ฅ Auto-Input:
5\n10 20 30 40 50\n30\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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.