47.5 심사문제: 공백이 포함된 회문 판별
, 코 딩님이 작성#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
int main(void)
{
char s1[30];
int length;
scanf("%[^\n]s", s1);
bool ispalindrome = true;
length = strlen(s1);
for (int i = 0; i < length / 2; i++)
{
if (s1[i] != ' ' && s1[length - 1 - i] != ' ')
{
if (s1[i] != s1[length - 1 - i])
{
ispalindrome = false;
break;
}
}
}
printf("%d\n", ispalindrome);
return 0;
}
출력해봤을땐 이상없는데 여기서는 틀림이라고 나옵니다 . 왜 그런거죠?