A 5 match test series between India and England has just concluded. Determine who won the series or if it ended in a draw. A team is said to have won the series if it wins strictly more test matches than the other team.

 A 5 match test series between India and England has just concluded.  Every match could have ended either as a win for India, a win for England, or a draw. You know the result of all the matches. Determine who won the series or if it ended in a draw.  A team is said to have won the series if it wins strictly more test matches than the other team.







STUDYEVERTHING












#include <iostream>
using namespace std;

//   3    7         234
int main()
{
    int t;

    cin >> t;
    while (t--)
    {

        int a[50], ind = 0, eng = 0, draw = 0;
        for (int i = 0; i < 5; i++)
        {
            cin >> a[i];

            if (a[i] == 2)
            {
                ind++;
            }
            else if (a[i] == 1)
            {
                eng++;
            }
            else if (a[i] == 0)
            {
                draw++;
            }
        }

        if (ind < eng)
        {
            cout << "INDIA" << endl;
        }
        else if (eng < ind)
        {
            cout << "ENGLAND" << endl;
        }
        else
            cout << "DRAW" << endl;
    }
}




    


Click on the above button to download the code.



Post a Comment

If you have furthur QUERIES please let us know

Previous Post Next Post