day.java:5: 错: 编码 GBK 的不可映射字符 (0x88) System.out.println((i+1)+"链?"+"链?"+day[i]+"澶?");
发布网友
发布时间:2022-04-22 22:09
我来回答
共2个回答
热心网友
时间:2023-10-05 09:14
跟代码没啥关系,这是因为编译的时候编码跟文件存储的编码方式不一样造成的 你得看看的你的工具编码格式设置了
热心网友
时间:2023-10-05 09:15
1.在软件上面工具栏里找一下编码集修改成UTF-8
2.数组声明错了。
要么是int[]day={...} 要么是int[]day = new int[]{...}或者int[]day = new int[12]