topical media & game development

talk show tell print

professional-program-21-TestScores-TestScores.c

? / professional-program-21-TestScores-TestScores.c


  include <vector>
  include <iostream>
  using namespace std;
  
  int main(int argc, char** argv)
  {
    vector<double> doubleVector(10); // Create a vector of 10 doubles
    double max;
    int i;
  
    for (i = 0; i < 10; i++) {
      doubleVector[i] = 0;
    }
  
    // Read the first score before the loop in order to initialize max
    cout << "Enter score 1: ";
    cin >> doubleVector[0];
    max = doubleVector[0];
  
    for (i = 1; i < 10; i++) {
      cout << "Enter score " << i + 1 << ": ";
      cin >> doubleVector[i];
      if (doubleVector[i] > max) {
        max = doubleVector[i];
      }
    }
  
    max /= 100;
    for (i = 0; i < 10; i++) {
      doubleVector[i] /= max;
      cout << doubleVector[i] << " ";
    }
    cout << endl;
    return (0);
  }
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.