Advertisement
LightProgrammer000

Contagem [Letras]

Nov 28th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.36 KB | None | 0 0
  1. /// Bibliotecas
  2. #include <string>
  3. #include <conio.h>
  4. #include <locale.h>
  5. #include <stdlib.h>
  6. #include <iostream>
  7. using namespace std;
  8.  
  9. /// Funções
  10. void Frase();
  11.  
  12. /// Programa
  13. int main( int argc, char *argv [] )
  14. {
  15.     // Sistemas
  16.     setlocale(LC_ALL, "");
  17.  
  18.     // Variáveis
  19.     string a;
  20.  
  21.     // Apresentação
  22.     cout << endl;
  23.     system("cls & color E");
  24.     system(" echo  ==============================");
  25.     system(" echo  - Usuario: %username%");
  26.     system(" echo  - Computador: %computername%");
  27.     system(" echo  - Hota: %time:~0,-3%");
  28.     system(" echo  - Data: %date%");
  29.     system(" echo  ==============================");
  30.     cout << endl;
  31.  
  32.  
  33.     cout << "\n ========== Programa das Frases ========== \n" << endl;
  34.  
  35.     // Chamada de Procedimento
  36.     Frase();
  37.  
  38.     cout << " ========================================= " << endl;
  39.  
  40.     return(0);
  41.  
  42. }
  43.  
  44. ////////////////////////////// FUNÇÕES //////////////////////////////
  45.  
  46. void Frase()
  47. {
  48.     // Variáveis
  49.     int i;
  50.     int cont = 0;
  51.     char a;
  52.     string b;
  53.  
  54.     cout << " - Digite uma Frase: ";
  55.     getline(cin, b);
  56.  
  57.     cout << " - Digite a Letra: ";
  58.     cin >> a;
  59.  
  60.     for ( i = 0; i < sizeof(b); i++ )
  61.     {
  62.         if ( a == b[i] )
  63.         {
  64.             cont ++;
  65.         }
  66.     }
  67.     cout << " - Quantidade de Letras ["<< a << "]: " << cont << endl;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement