分析下面的 JavaScript 语句:
Str = "This apple costs "+5 0.5;
执行后 str 的结果是()。
AThis apple costs 50.5
BThis apple costs 5.5
C"This apple costs" 50.5
D"This apple costs "5.5
相关试题
-
分析下面的 JavaScript 语句: Str = This apple costs +5 0.5; 执行后 str 的结果是()。
-
已知:char str[10],*p=str;下面C语言语句中正确的是( )。
-
str[100] =How do you do; strcpy( str + strlen(str)/2, es she); printf(%s\n, str); } 执行后的输出结果是( )
-
下面程序的输出结果是()。 #include #include main() { char *p1=abc,*p2=ABC,str[50]= xyz; strcpy(str+2,strcat(p1,p
-
阅读下面的程序,运行结果是()。 main() { char *str=ABCabcd; bubble(str,5); printf(\n%s,str); } bubble(str,count)