- #include<stdio.h>
- int main()
- {
- int l,i;
- char a[200];
- scanf("%s",&a);
- l=strlen(a);
- for (i=0; i<l; i++)
- {
- if (a[i]>='A' && a[i]<='Z') a[i]=a[i]+32;
- if (a[i]!='a' && a[i]!='A' && a[i]!='E' && a[i]!='e' && a[i]!='I' && a[i]!='i' && a[i]!='o' && a[i]!='O' && a[i]!='U' && a[i]!='u' && a[i]!='y' && a[i]!='Y') printf(".%c",a[i]);
- }
- printf("\n");
- return 0;
- }
Tuesday, January 21, 2020
Codeforces 118A String Task in C
Hi! I'm Sujan Mridha, the solution of 118A String Task is given below:
Subscribe to:
Post Comments (Atom)
Codeforces 131A cAPS lOCK Solution in C
#include <stdio.h> int main () { char ch [ 106 ]; int i , j , ck = 1 ; scanf ( "%s" , ch ); ...
-
#include <stdio.h> #include <string.h> int main () { int i , n , l = 0 ; char a [ 120 ]; scanf ( ...
-
#include <stdio.h> int main () { int o , n , a , b , c , s , t , u ; s = 0 ; t = 0 ; u = 0 ...
-
#include <stdio.h> #include <string.h> int main () { int i , n , p = 0 ; char s [ 120 ]; scanf ( ...
No comments:
Post a Comment