package sj;
public class InitialTelphone {
public static void Main(String[] args) {
Telphone phone=new Telphone();
phone.sendMessage();
phone.cpu=1.4f;
phone.screen=5.0f;
phone.mem=2.0f;
phone.sendMessage();
}
}
为什么写了两遍phone.sendMessage();
main
你的main方法的关键字是不是写错了
你的main为什么M大写呢?