问题描述
- 想让这段代码运行,之后不知道怎么写了,求大神,教教
-
bool IsPalindrome(const char s, int n)
{
// 非法输入
if (s == NULL || n < 1)
{
return false;
}
const char front,*back;// 初始化头指针和尾指针 front = s; back = s+ n - 1; while (front < back) { if (*front != *back) { return false; } ++front; --back; } return true;
}
解决方案
找个入口调用 IsPalindrome
解决方案二:
语法有个错误const char *front, *back;
解决方案三:
char *front没写对。
解决方案四:
你这到底是*front,*bank还是front,bank啊,这个都没定义啊
时间: 2024-10-28 11:37:19