标题:为啥无法连续判断回文
取消只看楼主
yayajpg
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2021-9-8
结帖率:0
已结贴  问题点数:20 回复次数:0 
为啥无法连续判断回文
#include <iostream>
using namespace std;
int main()
{
    int a,b,c,d,a1,b1,c1,d1;
    char ai[100];
    char bi[100];
    int ci[100];
    char di[100];
    for(a=0;ai[a]!='\0';a++)
    {
    cin>>ai[a];   
    a1++;   
    }
    for(b=0;bi[b]!='\0';b++)
    {
            cin>>bi[b];
        b1++;   
    }
    for(c=0;ci[c]!='\0';c++)
    {
        cin>>ci[c];
        c1++;   
    }
    for(d=0;di[d]!='\0';d++)
    {
        cin>>di[d];
        d1++;   
    }
    if(ai[a++]!=ai[a1--])
    {
        cout<<"case1: no"<<endl;
    }
    else
    {
        cout<<"case1: yes"<<endl;
    }
    if(bi[b++]!=bi[b1--])
    {
        cout<<"case1: no"<<endl;
    }
    else
    {
        cout<<"case1: yes"<<endl;
    }
    if(ci[c++]!=ci[c1--])
    {
        cout<<"case3: no"<<endl;
    }
    else
    {
        cout<<"case3: yes"<<endl;
    }
    if(di[d++]!=di[d1--])
    {
        cout<<"case4: no"<<endl;
    }
    else
    {
        cout<<"csae4: yes"<<endl;
    }
    return 0;
}
搜索更多相关主题的帖子: cout 判断 for cin char 
2021-09-09 09:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-506789-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.643088 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved