Hello-
I am in a Java begginers college course,and I am totally confused.How do you open the program to review it??I thought somehow you could open it with IE like html??I need a detail answer please..The instructor keeps telling me the assignments are wrong...We are using Eclipse if that helps to answer my question...Here is an example.He said this is not a runable program.
public class kab04_01 {
public static char upperCaseToLowerCase(char ch)
{
return (ch >= 'A' && ch <='Z') ? (char)(Math.random() * 26 + 'a') : ch;
}
How an suppose to declare if it is or not???
2007-12-05
03:35:20
·
2 answers
·
asked by
Anonymous
in
Education & Reference
➔ Homework Help