Hi, I've put a cin in a for so that I go asking for information but when I do it, it does everything for me, for example:
When should I ask for one for one. Part of the code:
int entradas,t;
cout << "Introduce el numero de entradas:";
cin >>entradas;
int ar[entradas];
for(t=0;t<entradas;t++)
cout << "Introduce un numero: ";
cin >> numero;
Does anyone know why he does those jumps I can not enter several numbers?