Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// Bibliotecas
- #include <string>
- #include <conio.h>
- #include <locale.h>
- #include <stdlib.h>
- #include <iostream>
- using namespace std;
- /// Funções
- void Frase();
- /// Programa
- int main( int argc, char *argv [] )
- {
- // Sistemas
- setlocale(LC_ALL, "");
- // Variáveis
- string a;
- // Apresentação
- cout << endl;
- system("cls & color E");
- system(" echo ==============================");
- system(" echo - Usuario: %username%");
- system(" echo - Computador: %computername%");
- system(" echo - Hota: %time:~0,-3%");
- system(" echo - Data: %date%");
- system(" echo ==============================");
- cout << endl;
- cout << "\n ========== Programa das Frases ========== \n" << endl;
- // Chamada de Procedimento
- Frase();
- cout << " ========================================= " << endl;
- return(0);
- }
- ////////////////////////////// FUNÇÕES //////////////////////////////
- void Frase()
- {
- // Variáveis
- int i;
- int cont = 0;
- char a;
- string b;
- cout << " - Digite uma Frase: ";
- getline(cin, b);
- cout << " - Digite a Letra: ";
- cin >> a;
- for ( i = 0; i < sizeof(b); i++ )
- {
- if ( a == b[i] )
- {
- cont ++;
- }
- }
- cout << " - Quantidade de Letras ["<< a << "]: " << cont << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement