#include <stdio.h>
#include
#include
using namespace std;
int main()
{
vector i{ 1,2,88,42,99 };
for (auto a = i.begin(); a!= i.end() ; a++)
{
if (*a == 42)
break;
cout << " no :" << *a << endl;
}
return 0;
}
created
last reply
- 1
reply
- 722
views
- 2
users