#include <iostream>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
using namespace std;
bool isPalindrome(char *input)
{
assert(input != NULL);
//定义缓存
char s[100];
strcpy(s,input);
//计算输入字符串的长度
int length = strlen(input);
//
int begin = 0;
int end = length - 1;
//
while(begin < end)
{
if(s[begin] == s[end])
{
begin++;
end--;
}
else
{
break;
}
}
//跳出上循环后,如果是正常结束则为回文数
if(begin < end)
{
return false;
}
else
{
return true;
}
}
void main()
{
char *str = "abccba";
//char *str;
//char *str = " ";
//这里我输入了几个空格和tab 但是还是对称的。
if(isPalindrome(str))
{
cout << "Yes"<<endl;
}
else
{
cout << "No" <<endl;
}
}
回文数_但程序中使用了strcpy和strlen
最新推荐文章于 2024-11-30 14:28:36 发布