What code can i use to drop the lowest score and average it out?


#include <iostream>
#include <iomanip>
using namespace std;

const int SIZE = 5, LENGTH = 25, SCORES = 4;

void...