⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testscoresdynamic.cpp

📁 C++高级编程这本书所附的源代码
💻 CPP
字号:
#include <vector>#include <iostream>using namespace std;int main(int argc, char** argv){  vector<double> doubleVector; // create a vector with zero elements  double max, temp;  size_t 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 (i = 0; i < doubleVector.size(); i++) {     doubleVector[i] /= max;    cout << doubleVector[i] << " ";  }  cout << endl;  return (0);}

⌨️ 快捷键说明

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