运行 ❯
获取您
自己的
网站
×
更改方向
更换主题,深色/浅色
进入 Spaces
#include <iostream> #include <string> using namespace std; int main() { string cars[4] = {"Volvo", "BMW", "Ford", "Mazda"}; cars[0] = "Opel"; cout << cars[0]; return 0; }
Opel