#5048: 請教高手 我哪裡錯了><!


cool79518 (率)

學校 : 不指定學校
編號 : 3220
來源 : [122.118.81.141]
最後登入時間 :
2011-05-28 13:21:27
a022. 迴文 | From: [122.118.77.83] | 發表日期 : 2011-04-10 16:18

#include<iostream>
using namespace std;
int main()
{
    char a[1000];
    int j=0,x,y,t=0;
    cin.getline(a,1000);
    while(a[j]!='\0')
    {
        cout<<a[j];
        j++;
    }
    cout<<endl;
    x=0;y=j-1;
    while(x<=y)
    {
        if(a[x]==a[y])
        {
            x++;
            y--;
            t=1;
        }
        else
        {
            t=0;
            break;
        }
    }
    if(t==1)
        cout<<"yes";
    else
        cout<<"no";
       
        system("pasue");
        return 0;

}

 
#6512: Re:請教高手 我哪裡錯了><!


abc873693 (剛)

學校 : 國立臺中高級工業職業學校
編號 : 21601
來源 : [61.223.36.38]
最後登入時間 :
2022-10-10 18:20:30
a022. 迴文 | From: [111.252.5.181] | 發表日期 : 2012-03-31 12:10

#include
using namespace std;
int main()
{
    char a[1000];
    int j=0,x,y,t=0;
    cin.getline(a,1000);
    while(a[j]!='\0')
    {
        cout<        j++;
    }
    cout<    x=0;y=j-1;
    while(x<=y)
    {
        if(a[x]==a[y])
        {
            x++;
            y--;
            t=1;
        }
        else
        {
            t=0;
            break;
        }
    }
    if(t==1)
        cout<<"yes";
    else
        cout<<"no";
       
        system("pasue");
        return 0;

}

   system("pasue");
  把這改掉吧!!!!

 
ZeroJudge Forum