运行 ❯
获取你
自己的
网站
×
更改方向
更改主题,暗/亮
转到 Spaces
#include <iostream> #include <deque> using namespace std; int main() { deque<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; // Change the value of the first element cars[0] = "Opel"; cout << cars[0]; return 0; }
欧宝