i've a java application that takes 2 parameters and i want to make batch file .bat to run the jar file i want to pass the parameters to the jar file using the echo command so if i clicked on the .bat file then a message telling
please enter the first parameter
after pressing enter another message appears
please enter the second parameter
at the end these 2 parameters will be passed to the jar file
java -jar MathCalculations.jar firstParameter seconedParameter
any recommendations how to write this batch file please?