-->
当前位置:首页 > Luz 第6102页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:使用公共免费邮件系统发邮件时,最重要的注意事项是:

Luz5年前 (2021-05-10)702
使用公共免费邮件系统发邮件时,最重要的注意事项是:@[C](1)A. 不要用某些服务商的产品B. 选择一个酷炫的网名C. 要设置正确的发件人信息D. 要有漂亮的配图和底色A.不要用某些服务商的产品B.选择一个酷炫的网名C.要设置正确的发件人…

单选题:在Microsoft Word中编辑中文论文,发现默认情况下每一段的开头没有缩进。为了实现缩进的效果,正确的做法是:

Luz5年前 (2021-05-10)892
在Microsoft Word中编辑中文论文,发现默认情况下每一段的开头没有缩进。为了实现缩进的效果,正确的做法是: @[C](1)A. 在每段开头输入两个全角空格B. 在每段开头输入一个Tab键C. 修改样式的格式设置为首行缩进两字符D.…

单选题:如果二进制文件a.dat已经存在,现在要求打开该文件进行读、写数据,应以()方式打开。

Luz5年前 (2021-05-10)2609
如果二进制文件a.dat已经存在,现在要求打开该文件进行读、写数据,应以()方式打开。 @[C](2)A. "r"B. "rb"C. "rb+"D. "rwb"A."r"B."rb"C."rb+"D."rwb"答案:C…

单选题:以下程序运行时,输入的x值在( )范围时才会有输出结果。

Luz5年前 (2021-05-10)2318
以下程序运行时,输入的x值在( )范围时才会有输出结果。 @[B](1)```#include int main(){int x;scanf("%d",&x);if(x˂=3);else if(x!=10)printf("%d\n",x)…

单选题:Which is the correct variable name in the follows?

Luz5年前 (2021-05-10)494
Which is the correct variable name in the follows? @[B](2)A. 3daysB. _sumC. intD. M.zA.3daysB._sumC.intD.M.z答案:B…

单选题:Which of the following characters is invalid in an identifier in

Luz5年前 (2021-05-10)566
Which of the following characters is invalid in an identifier in C? @[A](2)A. hyphenB. underscoreC. letterD. digitA.hy…

单选题:According to the C syntax, which is a legal character constant a

Luz5年前 (2021-05-10)1106
According to the C syntax, which is a legal character constant among the followings? @[B](2)A. "\0"B. '\102'C. '12'D.…

单选题:Supposing: `double i=3.5, j =5.5;` the value of expression (int)

Luz5年前 (2021-05-10)611
Supposing: `double i=3.5, j =5.5;` the value of expression (int)i+j is____. @[B](2)A. 9.0B. 8.5C. 8D. 8.0A.9.0B.8.5C.8…

单选题:Which statement of the following is equivalent to `x * = y + z`

Luz5年前 (2021-05-10)981
Which statement of the following is equivalent to `x * = y + z` ? @[C](2)A. x = y + zB. x = x * y + zC. x = x * (y + z)…

单选题:According to the declaration: `int a=17;` the value of expressio

Luz5年前 (2021-05-10)781
According to the declaration: `int a=17;` the value of expression `a++*1/3` is __. @[A](2)A. 5B. 6C. 5.666667D. 18A.5…