Cod sursa(job #1154224)
Utilizator | Data | 26 martie 2014 00:53:30 | |
---|---|---|---|
Problema | Progresie | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva ICPC | Marime | 0.21 kb |
#include <array>
#include <iostream>
using namespace std;
int main (void) {
array<int, 2> M{1, 2};
for (int &it: M)
it = it + 1;
for (int &it: M)
cout << it << " ";
}