char ch;
//Get data from user
cout << "Enter your sentence on one line followed by a # to end it: " << endl;
while (cin >> character && character != '#')
{
cin.get(ch);
ch = static_cast<char>(toupper(ch));
outFile << ch;
if (character == 'A' || character == 'E' || character == 'I' || character == 'O'
|| character == 'U')
{
vowelCount ++;
}
}
outFile << "number of vowels: " << vowelCount << endl;
I am trying to input a sentence, read how many vowels, blank spaces, and other characters it has. But the vowelCount is never right and I can't get it to write the same sentence to output file either. Any hints?
character. Why read again inch? Also, you might want to read up what a vowel is and how many there are. – pmr Feb 8 at 0:36characterjust skipped leading spaces as well! You only want to use something likecin.get(ch). The other issue is that the argument totoupper()has to be a positive integer butcharcan be signed in which case e.g. my name could crash your program. You want to use something liketoupper(static_cast<unsigned char>(ch)). – Dietmar Kühl Feb 8 at 0:46cin >> characteroperator reads in one character off the standard input into the character variable. Doingcin.get(ch)reads in a second character into the ch variable. You only need to do one of these operations. Delete thecin.get(ch)line and try replacing all references tocharacterwithch. – mmodahl Feb 8 at 0:46cin >> characteris only correct if thenoskipwsflag is set (e.g. usingstd::cin >> std::noskipws). Otherwise formatted input of a character skips leading whitespace. This should also answer the question on how to also write whitespace. – Dietmar Kühl Feb 8 at 1:18