fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. /* Faça um algoritmo que leia uma string e remova as vogais e os espaços em
  5. branco. */
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9. system ("color 0a");
  10. char str[1000], newstr[1000];
  11. int i = 0, x=0;
  12. printf ("Insira uma string:\n");
  13. fgets(str, 999, stdin);
  14. while (str[i] != '\0')
  15. {
  16. if (str[i] == 'a'||str[i] == 'e'||str[i] == 'i'||str[i] == 'o'||str[i]== 'u' || str[i] == 'A'|| str[i] == 'E'|| str[i] == 'I'|| str[i] =='O'|| str[i] == 'U')
  17. {
  18. i++;
  19. continue;
  20. }
  21. else
  22. {
  23. if (str[i] != ' ')
  24. {
  25. newstr[x++] = str [i];
  26. }
  27. }
  28. i++;
  29. }
  30. newstr[x]='\0';
  31. printf ("String sem vogais:\n");
  32. puts (newstr);
  33. system ("pause");
  34. return 0;
  35. }
  36.  
Success #stdin #stdout #stderr 0s 9424KB
stdin
fabio mo
stdout
Insira uma string:
String sem vogais:
fbm

stderr
sh: 1: color: not found
sh: 1: pause: not found