為啥我錯了
public class HelloWorld {
? ? public static void main(String[] args) {
int age=25;
if(age>60){
? ? System.out.peintln("老年");
} else if (age>40){
? ? ? ? System.out.println("中年");
? ? }
? ? ? else if (age>18){
? ? ? ? System.out,println("少年");
? ? } else {
? ? ? ? System.out.println("童年")
? ? }
}
}
2020-02-18
println拼寫錯誤 童年最后沒有分號? 少年那行out后面應該是.
2020-02-15
第五行 println寫成peintln? 第十行out后面是.寫成,第十二行沒寫;