Commit 176a8212 by Patryk Czarnik

więcej elementów

parent 5c4606de
......@@ -15,6 +15,15 @@ int main() {
std::cout <<"size: " << w.size() << '\n';
std::cout << '\n';
std::cout << w << '\n';
std::cout << "\nPodaję więcej elementów...\n";
for(int i=3; i < 20; i++) {
w.push_back(100 + i);
}
std::cout <<"size: " << w.size() << '\n';
std::cout << w << '\n';
std::cout << "Koniec programu\n";
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment