最赞回答 / 慕田峪1106551
语句符号错误。你第一个if这里 if(num>=0 && num<=999999999); 后面不能用分号,应该改为大括号{,并且在程序最后也补上一个大括号} public static void main(String[] args) { int num=999; int count=0; if(num>=0 && num<=999999999){ while(num !=0) { count++; ...
2019-04-27
最新回答 / Hero_exe
public class Test { public static void main(String[] args) { Student stu1 = new Student("li".90); Student stu2 = new Student("wang",80) }}//学生类class Student { private String name; private double grade;//建立一个学生的方法 public Student...
2019-04-25