0
Why I am getting (No output) :)
3 Answers
+ 3
The main() method signature is incorrect. It should accept String array, your main() method at line 32 accepts a String (not a String array)
public static void main( String[] args )
{
// method body
}
+ 1
At line 32 it is an array of Strings.
public static void main(String[] args)
+ 1
Thank you both of you...đ