永发信息网

数据结构的实验报告 串操作

答案:1  悬赏:10  手机版
解决时间 2021-04-30 14:51
  • 提问者网友:愿为果
  • 2021-04-29 23:45

实验内容:从键盘输入字符串并将他们建立一种数据结构

并通过某种方法判断字符串是否中心对称 输出判断结果

需要帮忙完成

程序思想描述 代码 和实验结果及分析

最佳答案
  • 五星知识达人网友:煞尾
  • 2021-04-29 23:58

#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;


}

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯