심사문제 47.5
, as df님이 작성#include <stdio.h>
#include<stdbool.h>
#include<string.h>
int main()
{
char s[31];
scanf("%[^\n]s", s);
int i = 0;
int start=0;
bool isPalindrome = true;
int end =strlen(s)-1;
int mid = (start + end) / 2;
while (s!=NULL) {
if (s[start] == s[end]) isPalindrome=true;
s[start]=s[start+1];
s[end] = s[end - 1];
if (s[mid]) break;
}
printf("%d", isPalindrome);
return 0;
}
비쥬얼 스튜디오 2019에서 오류없이 잘 돌아가는데 심사를 통과하지 못하네요 어떤점이 문제인건가요?