标签:color ret using end stream std str system tco
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int a[5] = { 1,2,-1,3,5 }; vector<int>num(a, a + 5); int tar; cin >> tar; cout << distance(num.begin(), remove(num.begin(), num.end(), tar)); system("pause"); return 0; }
标签:color ret using end stream std str system tco
原文地址:http://www.cnblogs.com/babyking1/p/6916898.html