#include #include #include using namespace std; using std::vector; int main() { vector v; int w; cout << "请输入数字" << endl; while (cin >> w) { v.push_back(w); } if (v.size() == 0) { cout << "没有任何元素" <