Advertisement
MarceloSousa

Atividade 1

Oct 17th, 2013
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.50 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <locale.h>
  4.  
  5.    
  6.     int main (void){
  7.     setlocale(LC_ALL,"PORTUGUESE");
  8.    
  9.         char frase[50];
  10.         int i=0,la=0,laa=0,lc=0;
  11.        
  12.         printf ("Digite a Frase: ");
  13.         gets(frase);
  14.        
  15.        
  16.         for (i=0;i<=50;i++){
  17.        
  18.            
  19.         switch(frase[i]){
  20.            
  21.             case 'a':
  22.                 la++;
  23.                 break;
  24.                
  25.             case 'A':
  26.                 laa++;
  27.                 break;
  28.                
  29.             case 'c':
  30.                 lc++;
  31.                 break;
  32.         }
  33.     }
  34.         printf ("Letra a: %d\nLetra A: %d\nLetra c: %d\n",la,laa,lc);
  35.        
  36.     getch();
  37.     return 0;
  38.  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement