输入一个字符串,判断该字符串是否为回文。回文就是字符串中心对称,从左向右读和从右向左读的内容是一样的。
输入格式:
输入在一行中给出一个不超过80
个字符长度的、以回车结束的非空字符串。
输出格式:
输出在第1行中输出字符串。如果它是回文字符串,在第2行中输出Yes
,否则输出No
。
输入样例1:
level
输出样例1:
level
Yes
输入样例2:
1 + 2 = 2 + 1 =
输出样例2:
1 + 2 = 2 + 1 =
No
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
栈限制
8192 KB
两种方法,择优选
#include<stdio.h>
#include<string.h>
int main() {
char a[85];
gets(a);
int len = strlen(a), flag = 1;
for (int i = 0; i < strlen(a) / 2; i++) {
if (a[i] != a[len - i - 1]) {
flag = 0;
break;
}
}
printf("%s\n", a);
if (flag) printf("Yes");
else printf("No");
return 0;
}
#include <stdio.h>
#include <string.h>
int main()
{
char ch1[100];
char ch2[100];
gets(ch1);
strcpy(ch2, ch1);
int len = strlen(ch1);
int i, j;
for (i = len-1, j = 0;i >= 0; i--)
{
ch1[j++] = ch1[i];
}
ch1[j] = '\0';
int b = strcmp(ch1, ch2);
printf("%s\n", ch2);
if (b == 0)
{
printf("Yes");
}
else
{
printf("No");
}
return 0;
}
标签:输出,14,No,int,ch1,printf,字符串,回文
From: https://blog.csdn.net/2401_87407380/article/details/143892815