设”varvarc=2008;”,则执行完语句document.write(typeof(d));后,输出结果是()。 A.numberB.stringC.objectD.undefined
设”varvarc=2008;”,则执行完语句document.write(typeof(d));后,输出结果是()。
A.number
B.string
C.object
D.undefined
相关考题:
设当前日期为2008年4月28日,星期一,则执行下面语句后的输出结果为______。Print Day(Now)Print Month(Now)Print Year(Now)Print Weekday(Now)
设char str1[11]="HELLO,",str2[10]=“world”;则执行语句cout 设char str1[11]="HELLO,",str2[10]=“world”;则执行语句 cout<<strlen(strcpy(str1,str2)));后的输出结果是 ______。A.12B.11C.7D.5
13、已知下面的循环代码 for(int i=1;i<4;i++){ for(int j=1;j<4;j++){ if(i*j>2) break; System.out.print(i*j); } System.out.print(i); } (1)执行完break语句之后,执行 语句;输出结果是 . (2)将break用continue代替,执行完continue语句之后,执行 语句;输出结果 是 .