C 언어-문자열 - 문자열이 회문인지 여부를 판단합니다

581 단어
Description
입력한 문자열이 회문인지 아닌지를 판단하기 위해 프로그램을 작성합니다."Yes"를 출력하고 그렇지 않으면 "No"를 출력합니다.회문이란 순독과 역독이 모두 같은 문자열을 가리킨다.
Input
Output
Sample Input
abcddcba
Sample Output
Yes
참고 사항:
#include
#include
int main()
{
    char s[100];
    int i,j;
    gets(s);
    i=0;
    j=strlen(s)-1;
    while(s[i]==s[j]&&i<=j)
    {
        i++;
        j--;
    }
    if(i>j)
        printf("Yes
"); else printf("No
"); return 0; }

좋은 웹페이지 즐겨찾기