testscoresiterator.cpp

来自「C++高级编程这本书所附的源代码」· C++ 代码 · 共 37 行

CPP
37
字号
#include <vector>#include <iostream>using namespace std;int main(int argc, char** argv){  vector<double> doubleVector;  double max, temp;  int i;  // Read the first score before the loop in order to initialize max  cout << "Enter score 1: ";  cin >> max;  doubleVector.push_back(max);  for (i = 1; true; i++) {    cout << "Enter score " << i + 1 << " (-1 to stop): ";    cin >> temp;    if (temp == -1) {      break;    }    doubleVector.push_back(temp);    if (temp > max) {      max = temp;    }  }  max /= 100;  for (vector<double>::iterator it = doubleVector.begin();       it != doubleVector.end(); ++it) {    *it /= max;    cout << *it << " ";  }  cout << endl;  return (0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?