fork download
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main() {
  6. vector <int> liczby = { 1, 4, 6, 7, 9, 2};
  7. for (auto n : liczby)
  8. cout<<n<<endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3228KB
stdin
Standard input is empty
stdout
1
4
6
7
9
2