CSS 主要用下列哪个 HTML标记构建页面布局 ?______
A、<dir>
B、<div>
C、Dif
D、<dis>
已知数据表 A中每个元素距其最终位置不远,为了节省时间,应采用的算法是( )。
A、堆排序
B、直接插入排序√
C、快速排序
D、直接选择排序
下列函数中能够把 6.25 四舍五入为最接近的整数的是 ______。
A、round(625)
B、rnd(625)
C、Mathrnd(625)
D、Mathround(625)
A、ImageMap控件
B、Image控件
C、RadioButton控件
D、adioButtonList控件
对下述程序的判断中,正确的是( )。
#include
main()
{ char*p ,s[256];
p=s ;
while(strcmp(s ,"the end"))
{ printf("Input the strin9 :");
gets(s);
while(*p)
putchar(*p++);
}}
A、此程序循环接收字符串并输出,直到接收到字符串“theend”为止
B、此程序循环接收字符串,接收到字符串“theend”则输出,否则程序终止
C、此程序循环接收字符串并输出,直到接收字符串“theend”为止,但因为代码有错误,程序不能正常工作
D、此程序循环接收字符串并将其连接在一起,直到接收字符串“theend”为止,输出连接在一起的字符串