求助:已知数组a,输入一个数据x,在数组a中找出第一个与x相等的元素并将其下标输出,若不存在这样的元素,则输出“Not found!”标志。
clearinput "n=" to n
dimension a(n)
FOR i=1 TO n
input"请输入值" to a(I)
ENDF
input "请输入x的值:" to x
for i=1 to n
IF a(i)= x
?i
exit
endif
endfor
if a(i) !=x
?"not found"
endi
我编的是这个好像哪错了。。。??求请教