大学生要有作为中华儿女的骄傲和自豪,不断增强做中国人的志气、骨气、底气,树立正确的( )和远大的人生志向。
A. 政治方向
B、人生志向
C. 价值取向
D. 理想信念
查看答案
在循环结构中使用break语句或者continue语句,其作用是相同的。
A. 对
B. 错
冒泡排序效率较高,因为它只需要约n2/2次比较。
A. 对
B. 错
continue statement can be only used in loop body.
The following code fragment outputs the string str . The loop condition str[i]!='\0' can be replaced by( ). char str[80]="hello, world";for (i = 0; str[i] != '\0'; i++) putchar(str[i]);
A. str[i]
B. i < 80
C. !(str[i] = '\0')
D. i<= 80