Write up to 10 lines to explain the logic used behind this code
pls!!!!!
*****************************************/
#include <iostream>
#include <string>
#include <iomanip>
#include<activaut.h>
#include<activdbg.h>
using namespace std;
int main()
{
int MatchesPlayed[6], MatchesWon[6],
MatchesLost[6], MatchesDraw[6], MatchesPoints[6],
TotalPoints[6];
MatchesWon[0] = 3; MatchesLost[0] = 0;
MatchesDraw[0] = 1; //India
MatchesWon[1] = 2; MatchesLost[1] = 0;
MatchesDraw[1] = 1; //NZ
MatchesWon[2] = 0; MatchesLost[2] = 3;
MatchesDraw[2] = 0; //Australia
MatchesWon[3] = 1; MatchesLost[3] = 2;
MatchesDraw[3] = 1;...