Guest User

Untitled

a guest
Jan 16th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. cout << "Problem 4: " << endl;
  2. {
  3. grade = 60;
  4. calculateGrade(grade);
  5. }
  6.  
  7. cout << "Problem 8: " << endl;
  8. {
  9. string str;
  10.  
  11. cout << "Please enter a string: ";
  12. cin >> str;
  13. cout << endl;
  14.  
  15. int length = str.length();
  16. int count = 0;
  17. int i = 0;
  18. //int letter;
  19. //letter = length / length - 1;
  20. for (i; i <= length; i++)
  21. {
  22. if (str.at(i) == 'a')
  23. count++;
  24.  
  25. //if a vowel, count++
  26. }
  27.  
  28. cout << "The number of lowercase vowels you have in the string is: " << count << endl;
  29. }
Add Comment
Please, Sign In to add comment