Cod sursa(job #2726111)

Utilizator cristiemanuelstroe cristian emanuel cristiemanuel Data 20 martie 2021 12:55:03
Problema Submultimi Scor 0
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.28 kb
#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;
}