运行 ❯
获取您
自己的
网站
×
更改面向方式
更改主题,深色/浅色
前往 Spaces
#include <iostream> #include <deque> using namespace std; int main() { deque<string> cars = {"Volvo", "BMW", "Ford", "Mazda"}; for (string car : cars) { cout << car << "\n"; } return 0; }
沃尔沃
宝马
福特
马自达