实验内容:从键盘输入字符串并将他们建立一种数据结构
并通过某种方法判断字符串是否中心对称 输出判断结果
需要帮忙完成
程序思想描述 代码 和实验结果及分析
实验内容:从键盘输入字符串并将他们建立一种数据结构
并通过某种方法判断字符串是否中心对称 输出判断结果
需要帮忙完成
程序思想描述 代码 和实验结果及分析
#include "Stdio.h"
#include "Conio.h"
int main(void)
{
char str[50];
int i,count,strlong;
printf("input the string:");
scanf("%s",str);
strlong=strlen(str);
count=strlong/2;
for(i=0;i<count;i++,strlong--)
if(str[i]!=str[strlong-1])
{ printf("no");
getch(); return 0;
}
printf("YES");
getch(); return 0;
}