单项选择题

class Test{
    public static void main(String[] args){
        int x=20;
        String sup = (x<15) ? ”small” : (x<22) ? “tiny” : “huge”;
        System.out.println(sup);
    }
}
运行结果是(     )。
A、small
B、tiny
C、huge
D、编译出错

热门 试题