" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
int tab[n];
vector<int> vect;
for (int i = 0; i < n; i++)
{
tab[i] = i % 4;
// i / lub
vect.push_back(i % 4);
}