#include #include #include using namespace std; int main() { /* Type your code here. */ //Take in values //Divide all values by largest value //input begins with INT indicating number of floats //Output each float with two digits after decimal //cout << fixed << setprecision(2) once before other cout statements //EX //input: 5 30.0 50.0 10.0 100.0 65.0 //Output: 0.30 0.50 0.10 1.00 0.65 //For simplicity, follow every output value by a space, including last one vector userFloats; int unsigned i; int numFloats; float fltLargest; cin >> numFloats; userFloats.resize(numFloats); //Get numbers for (i=0; i> userFloats.at(i); } //Find max fltLargest = userFloats.at(0); for (i=0; i fltLargest){ fltLargest = userFloats.at(i); } } //divde values by largest for (i=0; i