题目内容

一般要完成水墨效果,必须用到下面哪些特效()

A. 曲线
B. Stroke
C. Find Edges(查找边缘)
D. Paint Bucket

查看答案
更多问题

以下不是死循环的程序段是()

A. int s=36;
B. while (s)
C. {
D. –s;
E. }
F. B.int i=100;
G. while(1)
H. {
I. i=i%100+1;
J. if (i>100) break;
K. }
L. C.for(; ;)
M. D.unsigned int k=0;
N. do{
O. ++k;
P. } while (k>=0)

若变量已正确定义,要求程序段完成求5!的计算,不能完成此操作的程序段是()

A. for(i=1; i<=5; i++ )
B. {
C. p=1;
D. p=i;
E. }
F. B.for(i=1,p=1;i<=5;i++) p=i;
G. C.i=1;
H. p=1;
I. while (i<=5 )
J. {
K. p=i;
L. i++;
M. }
N. D.i=1;
O. p=1;
P. do {
Q. p=i;
R. i++;
S. } while (i<=5 )

下列复合语句中,不能实现两数交换的是()

A. {
B. a=b;
C. b=a;
D. }
E. B.{
F. b = a * b;
G. a = b / a;
H. b = b / a;
I. }
J. C.{
K. t=a;
L. a=b;
M. b=t;
N. }
O. D.{
P. a = a + b;
Q. b = a – b;
R. a = a – b;
S. }

程序代码如下:#include
int main()
{
int a,b;
printf(“please input a and b:”);
scanf(“%d%d”,&a,&b);
printf(“the output data is %d”,a7<回车>则程序输出为程序代码如下:#include
int main()
{
int a,b;
printf(“please input a and b:”);
scanf(“%d%d”,&a,&b);
printf(“the output data is %d”,a7<回车>则程序输出为

A. the output data is 7
B. the output data is 2
C. the output data is 1
D. the output data is 0

答案查题题库