logo - 刷刷题
下载APP
【单选题】

已知有变量定义:double x ;long a ; 要分别给a和x输入数据,并且输出a和x的值,正确的输入输出语句是( )。

A.
scanf(“%ld%lf”,&a,&x); printf(“%ld,%f”,a,x)
B.
scanf(“%ld%lf”,&a,&x); printf(“%ld,%lf”,a,x)
C.
scanf(“%d%f”,&a,&x); printf(“%d,%f”,a,x)
D.
scanf(“%ld%f”,&a,&x); printf(“%ld,%f”,a,x)
举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三

【单选题】窗体上有一个名称为Command1的命令按钮,一个名称为Text1的文本框。编写如下程序: Private Sub Command1_Click() Dim x As Integer x = Val(InputBox("输入数据")) : Text1 = Str(x + fun(x) + fun(x)) End Sub Private Function fun(ByRef n As Integer...

A.
语句 fun = n 有错,因为n是整型,fun没有定义类型
B.
运行程序,输入值为5时,文本框中显示655
C.
运行程序,输入值为6时,文本框中显示42
D.
ByRef表示参数按址传递