我的编程是这样写的:
public class hello{
public static void main(String[] args){
System.out.printIn("hello world");
}
}
提示的错误是:
错误1:需要<标识符>
public^static void main(String[ ]args){
错误2:
需要')'
System.out.printIn("hello world")^;
第一次写编程,也是第一次在这个网站求助,,求指教
你把printIn改成println试试…
注意不是大写i,是小写L…
初学时也应该注意下规范,类名首字母大写是公认的java代码规范。