Advertisement
RobertDeMilo

Запятая

May 2nd, 2024 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1.  bool first = true;
  2.     for (const auto& el : ages)
  3.     {
  4.         if (first)
  5.         {
  6.             out << el;
  7.             first = false;
  8.         }
  9.         else
  10.         {
  11.             out << ", ";
  12.             out << el;
  13.         }
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement