#include <iostream> #include <stdio.h> using namespace std; bool fun(string tekst,int n,int len){ string s="bcdfghjklmnprstwz"; string se="aeyiou"; for(int i=n; i<=len; i++) { for(int j=0; j<s.length(); j++) { if (tekst[i]==s[j]) { for(int j=0; j<s.length(); j++) { if (tekst[i+1]==s[j]) { for(int j=0; j<s.length(); j++) { if (tekst[i+2]==s[j]) { return true; } } } } } } for(int j=0; j<se.length(); j++) { if (tekst[i]==se[j]) { for(int j=0; j<se.length(); j++) { if (tekst[i+1]==se[j]) { for(int j=0; j<se.length(); j++) { if (tekst[i+2]==se[j]) { return true; } } } } } } } return false; } int main() { int wynik = 0; string txt,txt2; getline(cin,txt); int war = 0; while(txt.length()-war > 2){ for(int a = war; a >= 0; a--){ txt2 = txt.substr(a,txt.length()-war); if(fun(txt2,0,txt.length())==true) wynik++; } war++; } cout << wynik << endl; return 0; }
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 | #include <iostream> #include <stdio.h> using namespace std; bool fun(string tekst,int n,int len){ string s="bcdfghjklmnprstwz"; string se="aeyiou"; for(int i=n; i<=len; i++) { for(int j=0; j<s.length(); j++) { if (tekst[i]==s[j]) { for(int j=0; j<s.length(); j++) { if (tekst[i+1]==s[j]) { for(int j=0; j<s.length(); j++) { if (tekst[i+2]==s[j]) { return true; } } } } } } for(int j=0; j<se.length(); j++) { if (tekst[i]==se[j]) { for(int j=0; j<se.length(); j++) { if (tekst[i+1]==se[j]) { for(int j=0; j<se.length(); j++) { if (tekst[i+2]==se[j]) { return true; } } } } } } } return false; } int main() { int wynik = 0; string txt,txt2; getline(cin,txt); int war = 0; while(txt.length()-war > 2){ for(int a = war; a >= 0; a--){ txt2 = txt.substr(a,txt.length()-war); if(fun(txt2,0,txt.length())==true) wynik++; } war++; } cout << wynik << endl; return 0; } |