我将向量大小设置为 2,并在输入值达到 2 后尝试重新填充输入值。但我不知道该怎么做。
例如
输出
a
b
在我输入 c 后它会输出
c
b
在我输入 d 后它会输出
c
d
-
storeInfo.resize(2);//set the size
storeInfo.push_back(something);//put the value inside vector
//how to repopulate with values within the range after it reaches more than 2?
for(int i = 0; i< storeInfo.size(); i++) {
cout << storeInfo[i];
}