0

我整天都被这个程序卡住了。我终于觉得我真的很接近了。我必须找到字符串中元音和字符的数量。然后在最后输出它们。但是,当我编译我的程序时崩溃了。我检查了语法,整天都在看我的书。如果有人可以提供帮助,我将不胜感激!因为我还有 5 个类似的函数要编写来操作 c 字符串。谢谢!

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

int specialCounter(char *, int &);


int main()
{

const int SIZE = 51;        //Array size
char userString[SIZE];      // To hold the string
char letter;
int numCons;



// Get the user's input string
cout << "First, Please enter a string (up to 50 characters): " << endl;
cin.getline(userString, SIZE);





// Display output
cout << "The number of vowels found is " << specialCounter(userString, numCons) <<      "." << endl;
cout << "The number of consonants found is " << numCons << "." << endl;


}



int specialCounter(char *strPtr, int &cons)
{
int vowels = 0;
cons = 0;


while (*strPtr != '/0')
{
    if (*strPtr == 'a' || 'A' || 'e' || 'E' || 'i' || 'I' || 'o' || 'O' || 'u' || 'U')
    {
        vowels++;       // if vowel is found, increment vowel counter
                    // go to the next character in the string
    }
    else
    {
        cons++;         // if consonant is found, increment consonant counter
                    // go to the next character in the string
    }

    strPtr++;

}
return vowels;

}
4

3 回答 3

3

我将假设您仅限于不使用std::stringorstd::getline并且您必须假设用户输入的内容少于 51 个字符。

您的崩溃源于:

while (*strPtr != '/0')

空字符是转义码。'/0'是具有实现定义值的多字符文字。这意味着它可能总是正确的。将其更改为:

while (*strPtr != '\0') //or while (strPtr)

除此之外,您的元音检查存在逻辑错误。您必须对照每个元音检查它,如下所示:

if (*strPtr == 'a' || *strPtr == 'e') //etc.

如果您与每个字符的toupperortolower版本进行比较以将比较次数减少 2 倍,您会发现会更容易。

于 2013-02-12T03:04:03.937 回答
2
while (*strPtr != '/0')

应该:

while (*strPtr != 0)

或者

while (*strPtr != '\0');

你的编译器没有给你警告吗?如果是这样,请不要忽略警告。如果没有,请获得更好的编译器。

另请参阅其他比较中有关错误的评论。

于 2013-02-12T03:04:24.173 回答
2

其他答案应该可以解决您的问题,我可以建议您编写单独的函数而不是一个全能函数吗?

bool IsSpecialChar(char c)
{
 switch(c)
 {
    case 'a':
    case 'A':
    case 'e':
    case 'E':
    case 'i':
    case 'I':
    case 'o':
    case 'O':
    case 'u':
    case 'U':
    return true;
 }
   return false; 
}


int specialCounter(char *strPtr, int &cons)
{
  int vowels = 0;
  cons = 0;
  while (*strPtr != '\0')
  {
    IsSpecialChar(*strPtr) ? vowels++ : cons++;
    strPtr++;

  }
  return vowels;
}
于 2013-02-12T03:10:15.470 回答