Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bool first = true;
- for (const auto& el : ages)
- {
- if (first)
- {
- out << el;
- first = false;
- }
- else
- {
- out << ", ";
- out << el;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement