从第二个字母开始打印的字符串

时间:2020-04-28 22:21:49

标签: c++ function indexing

此代码的目的是验证名称并使用第一个字母大写的方式打印每个单词。我的意思是,如果插入的名称包含Invalid_Name中的一个字符,则该字符无效。

它正常工作,但是当我尝试打印该名称时,它从第二个字母开始。只需看下面的代码(抱歉大小):

 void validate_charName()
{
    int i = 0;
    int check = 0;
    string Invalid_Name = "1234567890'!\"£$%&/()=?^*-+<>-.,_:;[]{}°@§";
    bool name_is_valide = true;

    // Validate the character's name
    while(name_is_valide)
    {
        bool invalid_name = false;
        name_is_valide = true;

        cout<< "\nWhat's the name of your character? " << endl;
        cin.ignore();
        getline(cin, char_name);

        for(int i = 0; i < char_name.length(); i++)
        {
            for(int j = 0; j < Invalid_Name.length(); j++)
                {
                    if(char_name[i] == Invalid_Name[j])
                        invalid_name = true;
                }
        }
        if(invalid_name)
            cout<< "The name must contains only letters!" << endl;
        else
            name_is_valide = false;

    }


    while(char_name[i])
    {
        if(check == 0)
        {
            char_name[i] = toupper(char_name[i]);
            check = 1;
        }
        else if(isspace(char_name[i]))
            check = 0;
        i++;
    }
        sleepcp(1000);
        cout << "               ******Your character's name is " + char_name + "******                " << endl;
}

如果我插入名称“爱德华·肯威”,即使我在循环之前写了"Dward Kenway",它也会打印出i = 0;

为什么?

*************编辑*************

如果自从第一次输入以来我以正确的方式打印名称,它就可以工作。否则,这给我带来了问题。

1 个答案:

答案 0 :(得分:0)

我解决了这个问题,只是将“ cin.sync()”放在“ getline()”之前。希望能对某人有所帮助。