#30949: c 參考解答


judgeking001 (adking)

學校 : 不指定學校
編號 : 195281
來源 : [180.218.90.201]
最後登入時間 :
2024-05-10 17:18:58
a022. 迴文 | From: [210.240.156.75] | 發表日期 : 2022-06-24 00:37

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(){
    int num=1;
    char s[1001];
    while(num--){
        scanf("%s",s);
//        int l=strlen(s); 也可以用strlen算長度 
//        int j=l-1
        int count=0;
        for(count=0;s[count]!='\0';count++);
        int i=0,j=count-1,yes=1;
        while(i<j){
            if(s[i]!=s[j]){
                yes=0;
                break;
            }
            else{
                i++;
                j--;
            }                    
        }
        if(yes)
        printf("yes\n");
        else
        printf("no\n");    
    }    
    return 0;    
}

 
ZeroJudge Forum