I need to write a JAVA program that converts an uppercase letter to a lowercase letter ... the method declaration should be
public static char upperCasetoLowerCase(char ch) ... I think I am missing something in my thought process. Can anyone help? Here is what I have tried...
public static char upperCaseToLowerCase(char ch)
{
System.out.println("Enter an Uppercase letter");
char upper =MyInput.readChar();
System.out.println("the lower case is" + upper);
}
When I try and execute this I get a message that says Exception in thread "main" java.lang.nosuchmethoderror:main I really have no clue what this means