summaryrefslogtreecommitdiff
path: root/Year_1/Programming_1/ex2_23_07_19.cc
blob: 3b0ed37373b38e0f22bc11e80310c5ed9a14ceda (plain)
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
#include<iostream>

using namespace std;

template<int N>
bool func(string (&Q)[N][N]) {
    string stringaL = Q[0][0];
    string stringaC = Q[0][0];
    for(int i = 0; i < N; ++i) {
        if(Q[i][i].length() > stringaL.length())
            stringaL = Q[i][i];
        else if(Q[i][i].length() < stringaC.length())
            stringaC = Q[i][i];
    }

    short vocaliL{};
    short vocaliC{}; 

    for(auto& c : stringaL) {
        c = tolower(c);
        if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u')
            ++vocaliL;
    }
    
    for(auto& c : stringaC) {
        c = tolower(c);
        if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u')
            ++vocaliC;
    }
    
    return vocaliL < vocaliC;
}

int main() {
    string A[3][3] = {
        {"lllll", "bb", "cc"},
        {"AAA", "e", "cc"},
        {"AAA", "bb", "cc"},
    };

    cout << func(A);
    
    return 0;
}