一起创业
2015-02-05 16:39
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three = one +two ;
System.out.println(three);
three+=one;
System.out.println(three);
three*=one;
System.out.println(three);
three%=3;
system.out.println(three);
错误是:error: package system does not exist
system.out.println(three);
^
1 error
老师,怎么回事啊?
楼上答案正确。 S首字母大写。
最后这句 system.out.println(three); system 是 System
Java入门第一季(IDEA工具)升级版
1165515 学习 · 17586 问题
相似问题