In my code, I\'m asking the user to input three different values divided by a blank space.
Then, those three different values I would like to assign them to three different
You could first split the input using String.split and then parse each variable using Double.parseDouble Double.parseDouble to read them into a Double variable.