public class score {
public static void main (String args[]){
int score = 95;
if (100>= score&&score >=80){
System.out.println("优秀");
}
else if(80>score&&score>=60){
System.out.println("一般");
}
else if (60>score&&score>=0){
System.out.println("很差");
}
else if (score<0||score>100){
System.out.println("出现错误");
}
}
}
错误解析
在输入以上代码的时候出现结果为: ^
3 个错误
E:\java coding\src>javac score.java
score.java:5: 错误: 编码GBK的不可映射字符
System.out.println("鎴愮哗浼?");
^
score.java:9: 错误: 编码GBK的不可映射字符
System.out.println("鎴愮哗鑹?");
^
score.java:12: 错误: 编码GBK的不可映射字符
System.out.println("鎴愮哗宸?");
^
即为问题:编码GBK的不可映射字符
因为使用编程软件为notepad++