Advertisement
_Black_Panther_

Untitled

Sep 4th, 2019
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. //#include <stdio.h>
  2. //#include <string.h>
  3. //#include <math.h>
  4. //#include <algorithm>
  5. //#include <iostream>
  6. //
  7. //using namespace std;
  8. //
  9. //
  10. //int main() {
  11. //
  12. //// freopen("in.txt", "r", stdin);
  13. //// freopen("out.txt", "w", stdout);
  14. //
  15. //
  16. //
  17. //
  18. //
  19. //return 0;
  20. //
  21. //}
  22. //
  23.  
  24.  
  25. #include<stdio.h>
  26. #include<string.h>
  27.  
  28. int check_vowel(char);
  29.  
  30.  
  31. int main(){
  32.  
  33. char s[100];
  34.  
  35. gets(s);
  36.  
  37. strlwr(s);
  38.  
  39. int j=0;
  40. // for(int i=0;s[i]!='\0';i++){
  41. //
  42. // if(!(check_vowel(s[i])))
  43. // if(check_vowel(s[i]) == 1) {
  44. // s2[j++] = s[i];
  45. //
  46. // }
  47.  
  48. // e=strlen(s2);
  49. for(int i=0;s[i]!='\0';i++){
  50. if(!(check_vowel(s[i])))
  51. if(s[i] >= 'A' && s[i]<='Z' || s[i] >= 'a' && s[i]<='z'){
  52. printf(".");
  53. printf("%c", s[i]);
  54. //continue;
  55. }
  56. //printf("%c", s2[i]);
  57. }
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65. // printf("%s",s3);
  66. //
  67. // printf("%d",e);
  68.  
  69.  
  70.  
  71.  
  72. return 0;
  73. }
  74.  
  75. int check_vowel(char ch)
  76. {
  77. if (ch == 'a' || ch == 'A' || ch == 'e' || ch == 'E' || ch == 'i' || ch == 'I' || ch =='o' || ch=='O' || ch == 'u' || ch == 'U')
  78. return 1;
  79. else
  80. return 0;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement