B1003

博主分享了自己在编程中遇到的错误,指出代码处理多字符输入时的问题,强调了初始化的重要性。提到了 cin、cin.get()、cin.getline()、getline() 和 gets()、getchar() 的区别。此外,博主在刷完PAT乙级70题后重新解决该问题,虽然实现了一次通过,但认为代码不够简洁,并参考他人经验进行了改进。
摘要由CSDN通过智能技术生成

第一个代码是错的,是错的,是错的;
看第二个代码。

#include <iostream>
#include<string>
using namespace std;
int main()
{
    int num,temp=0,record[10]={0};
    char ctemp;
    string ans[2]={"NO","YES"};
    cin>>num;
    cin.get();//去回车
    for(;temp<num;++temp)
    {
        ctemp=cin.get();
        while(ctemp=='A')
            ctemp=cin.get();
        if(ctemp=='P')
        {
            if(cin.get()=='A')
            {
                ctemp=cin.get();
                if(ctemp=='T')
                    record[temp]=1;
                else if(ctemp=='A'&&cin.get()=='T')
                    record[temp]=1;
            }
        }

        ctemp=cin.get();
        while(ctemp!='\n')
        {
            if(ctemp!='A')
                record[temp]=0;
            ctemp=cin.get();
        }
    }
    for(temp=0;temp<num;++temp)
        cout<<ans[record[temp]]<<endl;
    return 0;
}

我对题目的理解就错了。所以以上代码只符合我自己的理解,并不通用。

暴露的问题:
1、对于多个字符输入,回车的处理不熟悉(要借鉴别人的代码、刷题、查资料来提升)
2、注重初始化,此问题导致程序崩溃许久

cin
cin.get()
cin.getline()
getline()
gets()
getchar()
这几类的区别

//——————2017年4月1日 15:24:25—————————–//
刷完PAT乙级70题,回头来解决这题啦

#include<iostream>
#include<cstdio>
#include<string>
using namespace std;

int main()
{
    int n;
    string str[10];

    cin >> n;
    cin.get();
    for (int i = 0; i < n; ++i)
    {
        getline(cin, str[i]);
    }

    for (int i = 0; i < n; ++i)
    {
        int p = 0, t = 0;
        int cnt_p = 0, cnt_t = 0;
        int flag = 0;

        for (int j = 0; j < str[i].size(); ++j)
        {
            if (str[i][j] != 'P'&&str[i][j] != 'A'&&str[i][j] != 'T')//有PAT以外的符号,NO;
            {
                flag = 1;
                break;
            }
            else if (str[i][j] == 'P')//统计P个数并记录位置;
            {
                cnt_p++;
                p = j;
            }
            else if (str[i][j] == 'T')//统计T个数并记录位置;
            {
                cnt_t++;
                t = j;
            }
        }
        //如果有其他符号,或者P、T不等于1个,或者T、P间没A,或者T在P前面,或者A个数不符合规则,NO;
        if (flag==1||cnt_p != 1 || cnt_t != 1 || t-p <2 || p*(t - p - 1) != (str[i].size() - t - 1))
        {
            cout << "NO" << endl;
            continue;
        }
        cout << "YES" << endl;
    }

    system("pause");
    return 0;
}

回头解决这题虽然是得心应手,一次通过,但是不够简洁。
以上删改后的代码是参考了前辈后改的:http://blog.csdn.net/wyxdexyq/article/details/23255135

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值