0

我编写了一个程序,它一次读取输入一个单词,直到输入一个单独的“q”。然后程序报告以元音开头的单词数,以辅音开头的单词数,以及不符合这两个类别的数。

#include <iostream>
#include <cstdlib>

int main()
{
char ch;
bool cont = true; //for controlling the loop
bool space = false; //see if there is a space in the input
    int i = 0; //checking if the input is the first word
int consta, vowel, others;
consta = vowel = others = 0;
std::cout<<"Enter words (q to quit)\n";

while (cont && std::cin>>ch) //continue while cont is true and the input succeded
{
    if (i == 0) //check if this is the first word
    {
        if (isalpha(ch))
            if ((ch == 'a' ||ch == 'e' ||ch== 'i' ||ch== 'o' ||ch== 'u') || (ch == 'A' ||ch== 'E' ||ch== 'I' ||ch== 'O' ||ch== 'U'))
                ++vowel;
            else
                ++consta;
        else
            ++others;
        ++i; //add 1 to i so this if statement wont run again
    }


    if (space == true) //check if the last input was a space
    {
        if (!isspace(ch)) //check if the current input is not a space
        {
         if (ch != 'q') //and ch is not 'q'
         {
        if (isalpha(ch))
            if ((ch == 'a' ||ch == 'e' ||ch== 'i' ||ch== 'o' ||ch==   'u') || (ch == 'A' ||ch== 'E' ||ch== 'I' ||ch== 'O' ||ch== 'U'))
                ++vowel;
            else
                ++consta;
        else
            ++others;

        space = false;
        }

        }
        else
            cont = false;
    }
    if (isspace(ch)) //check if ch is a space
        space = true;
}

std::cout<<"\n"<<consta<<" words beginnig with constants\n";
std::cout<<vowel<<" words beginnig with vowels\n";
std::cout<<others<<" words beginning with others\n";

system("pause");
return 0;
}

但是当我输入空格和'q'时它不会终止。但是如果 i 输入 '^Z' 它确实会终止,但康铜始终为 1,其他始终为 0。

4

3 回答 3

1

问题是std::cin默认情况下会忽略所有制表符和空格。所以在你的代码中

if (isspace(ch)) //check if ch is a space
    space = true;

从不设置spacetrue. 避免此问题的一种方法是使用std::cin.get(ch)而不是std::cin>>ch

于 2013-07-28T07:00:47.303 回答
0

希望这可以帮助你

#include<iostream>
#include<cstdlib>
#include<string>
int main()
{
    char ch[50];
    int consta, vowel, others;
    consta = vowel = others = 0;
    bool flag = false;
    std::cout<<"Enter words (q to quit)\n";
    while(1)
    {
        if(flag == true)
        {
            break;
        }
        gets(ch);
        char* pch;
        pch = strtok(ch," ");
        if(strcmp("q",pch)==0)
        {
            break;
        }
        while (pch != NULL)
        {
            if(strcmp("q",pch)==0)
            {
                flag = true;
                break;
            }
            if(isalpha(pch[0]))
            {
                if ((pch[0] == 'a' ||pch[0] == 'e' ||pch[0]== 'i' ||pch[0]== 'o' ||pch[0]== 'u') || (pch[0] == 'A' ||pch[0]== 'E' ||pch[0]== 'I' ||pch[0]== 'O' ||pch[0]== 'U'))
                    ++vowel;
                else
                    ++consta;
            }
            else
                ++others;
            pch = strtok (NULL, " ");
        }
    }
    std::cout<<"\n"<<consta<<" words beginnig with constants\n";
    std::cout<<vowel<<" words beginnig with vowels\n";
    std::cout<<others<<" words beginning with others\n";
    std::cin.ignore();
    return 0;
}

请参考这个strtok。这会计算所有单词,无论是由空格分隔还是在单独的行中。

于 2013-07-28T06:27:38.903 回答
0

假设要使用相同的代码结构,在while循环中使用

while (cont && std::cin>> std::noskipws >>ch)

std::noskipws :这将 cin 流的行为更改为不忽略空格。它还在流的末尾添加了一个空格。当心末端空间。幸运的是,您的代码处理了空格,因此您不会看到它的影响。

当您在代码中处理空格时,这将起作用。此外,默认情况下 cin 的行为是忽略空格。

但是我认为您可以降低代码的复杂性,并且您可能不需要此语句

于 2013-07-28T06:40:55.733 回答