class Main {
public static void main(String[] args) {
//JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
System.out.println("Hello world! - java.jsrun.net ");
}
}
enum Season {
WINTER('w'), SPRING('s'), SUMMER('h'), FALL('f'); // 修正了'E'为'f'以匹配图片内容中的中文翻译
private char c;
private Season(char c) {
this.c = c;
}
}