【简答题】下列程序的运行结构是() main() { int a=1,b=0; switch(a) { case 1:switch(b) { case 0:printf("****");break ; case 1:printf("####");break ;} case 2:printf("$$$$");break; } }
【单选题】阅读下列的程序 class Person{ static{ System.out.println("static") } Person(){ System.out.println("构造") } } class Demo{ public static void main(String[] args){ Person p = new Person(); } } 下列选项中,程序的运行结果是()