class Main {
public static void main(String[] args) {
//JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
System.out.println("Hello world! - java.jsrun.net ");
//学号为32,欧阳逸轩
int ID=32;
int i= ID % 3;
String result;
switch (i){
case 0:
result = "第一个";
break;
case 1:
result = "第二个";
break;
default:
result = "第三个";
break;
}
System.out.println(result);
}
}