题目内容

putchar() 函数是字符输出函数,其功能是在显示器上输出()个字符常量或字符变量的值。

查看答案
更多问题

Select the correct statement.

A. Break ends the loop, ignoring the loop condition
Break ends the loop, ignoring all further statements
Continue goes back to the start of the loop
D. All of the above

range(3) creates a sequence of which numbers?

A. [1,2,3]
B. [0,1,2,3]
C. [0,1,2]
D. [1,2]

range(2,5) creates a sequence of which numbers?

A. [0,2,4]
B. [2,3,4,5]
C. [2,3,4]
D. [2,4]

range(1,20,8) creates a sequence of which numbers?

A. [0,8,16]
B. [1,9,17]
C. [0,8,16,24]
D. [1,9,17,25]

答案查题题库