请问我哪里错了?运行了几次都不行
public class HelloWorld{
public static void main(String[] args) {
final char Man="男";
final char Woman="女";
System out println(Man);
System out println(Woman);
}
}
显示的错误:
HelloWorld.java:5: error: ';' expected System out println(Man); ^ HelloWorld.java:6: error: ';' expected System out println(Woman); ^ 2 errors
什么意思?