int findValue(int a[], int value, int first, int last)
{
if(first<=last){
int mid=(first+last)/2;
if(value>a[mid])
findValue(a,value,mid+1,last);
else if(value=0){
cout<<"要找的值在位置: "<

int findValue(int a[], int value, int first, int last)
{
if(first<=last){
int mid=(first+last)/2;
if(value>a[mid])
findValue(a,value,mid+1,last);
else if(value=0){
cout<<"要找的值在位置: "<