C++指针指向字符串
#include<iostream>usingnamespacestd;#include<string.h>boolis_huiwen(chara[],intlength...
#include<iostream>
using namespace std;
#include<string.h>
bool is_huiwen(char a[],int length)
{
const char *src=a;
const char *end;//这句中 为什么要加const呢
end=src+length-1;
while(src<end)
{ if(*src==*end)
{ src++;end--;}
else return false;
}
return true;
}
int main()
{ int len;
char c[10];
cout<<"enter:"<<endl;
cin>>c;
len=strlen(c);
bool h;
h=is_huiwen(c,len);
if(h) cout<<"hui_wen"<<endl;
else cout<<"non_hui_wen"<<endl;
return 0;
} 展开
using namespace std;
#include<string.h>
bool is_huiwen(char a[],int length)
{
const char *src=a;
const char *end;//这句中 为什么要加const呢
end=src+length-1;
while(src<end)
{ if(*src==*end)
{ src++;end--;}
else return false;
}
return true;
}
int main()
{ int len;
char c[10];
cout<<"enter:"<<endl;
cin>>c;
len=strlen(c);
bool h;
h=is_huiwen(c,len);
if(h) cout<<"hui_wen"<<endl;
else cout<<"non_hui_wen"<<endl;
return 0;
} 展开
3个回答
展开全部
#include<iostream>
using namespace std;
#include<string.h>
bool is_huiwen(char a[],int length)
{
const char *src=a;
const char *end;//这句中 为什么要加const呢
end=src+length-1;
while(src<end)
{ if(*src==*end)
{ src++;end--;}
else return false;
}
return true;
}
int main()
{ int len;
char c[10];
cout<<"enter:"<<endl;
cin>>c;
len=strlen(c);
bool h;
h=is_huiwen(c,len);
if(h) cout<<"hui_wen"<<endl;
else cout<<"non_hui_wen"<<endl;
return 0;
}
只有一个const,如果const位于*左侧,表示指针所指数据是常量,不能通过解引用修改该数据;指针本身是变量,可以指向其他的内存单元。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询