////////////////////////////////////////////////////////////// findMatch // // findMatch() searches an array of SkyDiver objects for one that contains // the specified name; the type SkyDiver has been declared globally as: // // struct SkyDiver { // string Name; // double Weight; // double dragK; // double timeFalling; // double Speed; // }; // // All formulas and conventions from the SkyDiver projects are in effect. // // Parameters: // Name the name for which we will search // SD[] an array of SkyDiver objects // Size the number of SkyDiver objects in SD[] // // Pre: Name has been initialized // SD[] contains Size properly-initialized SkyDiver objects, in // indices 0 through Size - 1 // // Returns: index of first matching SkyDiver object; Size if none is found // int findMatch(const string& Name, const SkyDiver SD[], const int Size) { // Paste the body of your solution here and submit this file. // Do not change anything above this comment. } // Do not change anything afer this comment.