#include <iostream.h>void main(){?int i,N;?char a[80],b[80];?cin>>a[N];?for(i=0;i<N/2;i++)?{??b[i]=a[N-1-i];??if(b[i]==a[i])???cout<<"yes"<<endl;??else???cout<<"no"<<endl;?}}
2 回答

DoDream
TA貢獻28條經(jīng)驗 獲得超3個贊
不是很懂你的意思,改了一下你的代碼。
#include <iostream>
using namespace std;
void main()
{
?int i,N;
?char a[80],b[80];
?cin>>a;
?N = strlen(a);
?for(i=0;i<N/2;i++)
?{
? b[i]=a[N-1-i];
? if(b[i]==a[i])
? ?cout<<"yes"<<endl;
? else
? ?cout<<"no"<<endl;
?}
?system("pause");
}
- 2 回答
- 0 關(guān)注
- 1318 瀏覽
添加回答
舉報
0/150
提交
取消