I just started learning Java as I'm being taught in school. I saw many people tell that IntelliJ is a great IDE for java, so to just try it I moved from BlueJ to IntelliJ.
One big problem I am facing is that in blueJ if I have to pass values to the program when it is running, BlueJ actually asks input before showing the output, and in the place of the String [] args
I enter the values inside {} separated by commas.
But in IntelliJ it never asks for the values and directly shows an error that the index of the array specified doesn't exist.
Please help me how to solve this problem and be able to pass the values to the program...