Hi, I'm working on a program about matrices...for getting the different elements of the matrix I must prompt the user as below:
prompt example: Enter a11, a12, a13, a21, a22, a23, a31, a32, a33: user input example: 1 2 1 2 13 1 4 50 3
now I need to put each number of user input in an element of a 3*3 matrix...if the user input was like 12121314503, I could have used % and / to get each number and assign it to an element of array...or use "parse" methods to change from string to int..... but how can I do such things when space is in between the numbers?!
I really have no clue! any help would be much appreciated!