Ahaha... claro, esto es "lo mismo"... está claro.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
int main() {
vector<int> A = {1, 2, 3, 4, 5, 6, 7, 8};
vector<int>::iterator it = A.begin();
cout << *it;
A.erase(it);
cout << *it;
}
Citar
Return value
An iterator pointing to the new location of the element that followed the last element erased by the function call. This is the container end if the operation erased the last element in the sequence.
for (; it!=v.end(); it++){
dist = abs (medvec - *it);
if (dist > med){
v.erase(it);
it--;
}
}
it=v.begin();
double dist;
for (; it!=v.end(); it++){
dist = abs (medvec - *it);
if (dist > med) v.erase(it);
}
if (dist > med) v.erase(it);
Cita de: valencia456 en 3 Diciembre 2014, 10:37 AM
habría que prohibir que se mate animales en cualquier parte del mundo,aunque eso suponga que solo comamos vegetales.