有以下程序 main() { int k=5,n=0; do { switch(k) { case 1: case 3:n+=1;k--;break; default:n=0;k--; case 2: case 4:n+=2;k--;break; } printf('%d',n); }while(k>0&&n<5); } 程序运行后的输出结果是
【简答题】下列语句中,哪些结果为true? String s="hello"; String t="hello"; char c[]={'h','e','l','l','o'};A. s.equals(t); B. t.equals(c); C. t.equals(new String("hello")); D. t==c