C ++:不会接受新的C字符串输入

时间:2012-04-11 00:24:10

标签: c++ c-strings

首先,先谢谢你的帮助。这个问题让我疯了。

我有一个接受c字符串的程序,然后可以计算元音和辅音的数量。这没有问题。但是,我还需要包含一个允许用户创建新字符串的函数。但问题是,当用户从菜单中选择“新字符串”时,它只是循环遍历newString()方法,而不等待用户的输入。然后它会创建一个新的空白屏幕。

这是整个计划。 newString()方法结束了。

#include <iostream>    
using namespace std;

// function prototype
void printmenu(void);
int vowelCount(char *);
int consCount(char *);
int cons_and_vowelCount(char *);
void newString(char *, const int);

int main() {

    const int LENGTH = 101;
    char input_string[LENGTH];      //user defined string
    char choice;                        //user menu choice
    bool not_done = true;       //loop control flag

    // create the input_string object
    cout << "Enter a string of no more than " << LENGTH-1 << " characters:\n";
    cin.getline(input_string, LENGTH);

    do {
        printmenu();
        cin >> choice;
        switch(choice)
        {
            case 'a':
            case 'A':
               vowelCount(input_string);
               break;
            case 'b':
            case 'B':
               consCount(input_string);
               break;
            case 'c':
            case 'C':
                cons_and_vowelCount(input_string);
                break;
            case 'd':
            case 'D':
               newString(input_string, LENGTH);
               break;
            case 'e':
            case 'E':
               exit(0);
            default:
                cout << endl << "Error: '" << choice << "' is an invalid selection" << endl;
                break;
        } //close switch
    } //close do

while (not_done);
return 0;
} // close main

/* Function printmenu()
 * Input:
 *  none
 * Process:
 *  Prints the menu of query choices
 * Output:
 *  Prints the menu of query choices
 */
void printmenu(void)
{
    cout << endl << endl;
    cout << "A) Count the number of vowels in the string" << endl;
    cout << "B) Count the number of consonants in the string" << endl;
    cout << "C) Count both the vowels and consonants in the string" << endl;
    cout << "D) Enter another string" << endl;
    cout << "E) Exit the program" << endl;
    cout << endl << "Enter your selection: ";
    return;    
}

int vowelCount(char *str) {
    char vowels[11] = "aeiouAEIOU";
    int vowel_count = 0;

    for (int i = 0; i < strlen(str); i++) {
        for (int j = 0; j < strlen(vowels); j++) {
            if (str[i] == vowels[j]) {
                vowel_count++;
            }
        }
    }
    cout << "String contains " << vowel_count << " vowels" << endl;
    return vowel_count;
} // close vowelCount

int consCount(char *str) {
    char cons[43] = "bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ";
    int cons_count = 0;

    for (int i = 0; i < strlen(str); i ++) {
        for (int j = 0; j < strlen(cons); j++) {
            if (str[i] == cons[j]) {
                cons_count++;
            }
        }
    }
    cout << "String contains " << cons_count << " consonants" << endl;
    return cons_count;
} // close consCount

int cons_and_vowelCount(char *str) {
    int cons = consCount(str);
    int vowels = vowelCount(str);
    int total = cons + vowels;

    cout << "The string contains a total of " << total << " vowels and "
            "consonants" << endl;
    return total;
}

void newString(char *str, int len) {
    cout << "Enter a string of no more than " << len-1 << " characters:\n";
    cin.getline(str, len);
    return;
}

3 个答案:

答案 0 :(得分:6)

语句cin >> choice仅使用他们键入的字符,而不是后面的回车符。因此,后续的getline()调用会读取一个空行。一个简单的解决方案是调用getline()而不是cin >> choice,然后使用第一个字符作为选择。

顺便说一句,while (not done)应紧跟do { … }return 0是多余的。此外,您应该在程序开头调用newString而不是重复其内容。

答案 1 :(得分:3)

cin >> choice在输入流中留下一个换行符..导致下一个getline()使用它并返回。有很多方法..一种方法是在cin.ignore()之后立即使用cin >> choice

答案 2 :(得分:0)

cin >> choice仅消耗流中的一个字符(如前所述)。你应该添加

    cin.ignore(std::numeric_limits<std::streamsize>::max(),'\n');

cin>>choice之后,在阅读选项后忽略流入流中的所有字符。

P.S。 #include <limits>

相关问题