Posts by Guilherme • 11 points
1 post
-
1
votes1
answer88
viewsQ: Storing in a vector without pressing ENTER at each insertion
It is necessary to store a sequence of numbers in a vector, but pressing ENTER only at the end of the line. For example: ENTRADA: 10 20 30 15 50 <ENTER> Vetor[] = {10, 20, 30, 15, 50}…