-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringTask.cpp
52 lines (49 loc) · 1.14 KB
/
stringTask.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include<iostream>
#include<string.h>
using namespace std;
int main()
{
char str[101];
char ansarr[200];
cin>>str;
// cout<<str;
// cout<<endl;
char* ptr = str;
// while(*ptr != '\0'){
// cout<<*ptr;
// ptr++;
// }
while(*ptr != '\0'){
if(*ptr=='A'||*ptr=='E'||*ptr=='I'||*ptr=='O'||*ptr=='U'||*ptr=='Y'||*ptr=='a'||*ptr=='e'||*ptr=='i'||*ptr=='o'||*ptr=='u'||*ptr=='y'){
cout<<"";
}
else{char ch;
int v = int(*ptr);
if(v>=65 && v<=90){
ch = char((*ptr)+32);
// cout<<ch;
}
else if (v>=97 && v<=122){
ch = *ptr;
// cout<<ch;
}
static int i=0;
ansarr[i]=ch;
i++;
}
// ansarr[0]= ch;
ptr = ptr+1;
}
// cout<<endl;
int alpha = strlen(ansarr);
// for(int i=0;i<alpha;i++){
// cout<<ansarr[i];
// }
cout<<endl;
char* fptr = ansarr;
while(*fptr != '\0'){
cout<<"."<<*fptr;
fptr++;
}
return 0;
}