Sunday, August 26, 2018

Character Counter Version 1.0 in C++

A very simple character counter that I wrote a long time ago in C++ that will count the vowels, consonants, digits and spaces if else statement.

I am currently accepting programming work, it project, school 

programming projects , thesis and capstone projects, IT consulting 

work, computer tutorials and web development work kindly contact me in the following email address for further details.  If you want to advertise in my website kindly contact me also in my email address also. Thank you.
My email address are the following jakerpomperada@gmail.com, jakerpomperada@aol.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

My personal website is http://www.jakerpomperada.com


Program Listing

#include <iostream>

using namespace std;

main() {
    int digits=0, vowels=0,consonants=0,spaces=0;
    char c;

    cout << "\n\t Character Counter Version 1.0";
    cout << "\n\n";
    cout << "\t Developed By: Jake R. Pomperada,MAED-IT";
    cout << "\n\n";
    cout << "Enter a Sentence : ";
    while ((c= getchar()) != '\n') {

    if (c == 'a' || c == 'A'  ||
        c == 'e' || c == 'E' ||
        c == 'o' || c == 'O' ||
        c == 'i' || c == 'I' ||
        c == 'u' || c == 'U' )
        {
        vowels++;
        }
   if (c == 'b' || c == 'B'  ||
        c == 'c' || c == 'C' ||
        c == 'd' || c == 'D' ||
        c == 'f' || c == 'F' ||
        c == 'g' || c == 'G' ||
        c == 'h' || c == 'H' ||
        c == 'j' || c == 'J' ||
        c == 'k' || c == 'K' ||
        c == 'l' || c == 'L' ||
        c == 'm' || c == 'M' ||
        c == 'n' || c == 'N' ||
        c == 'p' || c == 'P' ||
        c == 'q' || c == 'Q' ||
        c == 'r' || c == 'R' ||
        c == 's' || c == 'S' ||
        c == 't' || c == 'T' ||
        c == 'v' || c == 'V' ||
        c == 'w' || c == 'W' ||
        c == 'x' || c == 'X' ||
        c == 'y' || c == 'Y' ||
        c == 'z' || c == 'Z' )

         {
       consonants++;
      }


        if (c =='0' || c == '1' ||
         c =='2' || c == '3'
         || c =='4' || c == '5' ||
           c =='6' || c == '7' ||
           c =='8' || c == '9'  ) {
     digits++;
           }


     if (c == ' ') {
         spaces++;
     }

    }
    cout << "\nNo. of Digits " << digits << ".";
    cout << "\nNo. of Vowels " << vowels << ".";
    cout << "\nNo. of Consonants " << consonants << ".";
     cout << "\nNo. of Spaces " << spaces << ".";
    cout << "\n\n";
    system("pause");
}

No comments:

Post a Comment