/
AI2
/
API2
Обзор
Документация
Войти
/
AI2
/
API2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
text.cpp
16 строк
298 B
AI2
upload files
02 июл 2025, 06:55
02 июл 2025, 06:55
aff9cb2
Код
Авторство
О чём код?
#include <iostream> #include <vector> #include <string> using namespace std; int main() { vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"}; for (const string& word : msg) { cout << word << " "; } cout << endl; }