how can i just read input from the first command line input?
java Program 2 4 5 inputfile > out
i want to be able to get the following:
x = 2
y = 4
z = 5
and then read the rest of the input from the inputfile
and then redirect the output of the program to the file "out" as it shows i can.
java Program 2 4 5 inputfile > out
i want to be able to get the following:
x = 2
y = 4
z = 5
and then read the rest of the input from the inputfile
and then redirect the output of the program to the file "out" as it shows i can.
