Hello everyone,
If i need my program to create as much vectors as needed based on the user first input , assuming each vectors will hold an int value like a combinations of numbers, so latter those vectors will be compared for higher value.
EX:
prompt the user to enter how many vectors needed for this program ,
3
now user will enter their first vectors value followed by second , and third.
23456
12340
98400
I was thinking of having a loop, but not sure yet how should I create those different dynamic vectors variables in a way to distinguish each one from the others so I can pass them differently into my other methods for comparison and calculation.
I'm new to vectors that's why this might seems silly for some ppl but its little confusing for me.
Thank you.