-
Notifications
You must be signed in to change notification settings - Fork 0
/
linklist.cpp
60 lines (60 loc) · 1.35 KB
/
linklist.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
53
54
55
56
57
58
59
60
#include<iostream>
#include<string.h>
using namespace std;
int main()
{
string text;
string text1;
string text2;
cin>>text;
/* cin>>text1;
cin>>text2; */
for(int i = 0; i < text.length(); i++)
{
if(text[i] == ("a || A" && "e || E" && "i || I" && "o || O" && "u || U"))
{
cout<<"lovely string";
cout<<endl;
return 0;
}
else //if(text1[] == "a || A" || "e||E" || "i||I" || "o||O" || "u||U")
{
cout<<"ugly string";
cout<<endl;
}
break;
}
cin>>text1;
for(int i = 0;i < text1.length(); i++)
{
if(text1[i] == ("a || A" && "e || E" && "i || I" && "o || O" && "u || U"))
{
cout<<"lovely string";
cout<<endl;
return 0;
}
else
{
cout<<"ugly string";
cout<<endl;
}
break;
}
cin>>text2;
for(int i = 0;i < text2.length(); i++)
{
if(text2[i] == ("a || A" && "e || E" && "i || I" && "o || O" || "u || U"))
{
cout<<"lovely string";
cout<<endl;
return 0;
}
else
{
cout<<"ugly string";
cout<<endl;
}
break;
}
return 0;
}