网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

有如下程序: DefStr X-Z X="123" Y="456", Z=X$+Y$ Print ZS End 运行后,输出结果是( )。

A.显示出错信息

B.123456

C.579

D.579


参考答案

更多 “ 有如下程序: DefStr X-Z X="123" Y="456", Z=X$+Y$ Print ZS End 运行后,输出结果是( )。A.显示出错信息B.123456C.579D.579 ” 相关考题
考题 (7)有下列程序: DefStr X_Z X="123" Y="456" Z="X+Y" PrintZ End 运行后,输出结果是。

考题 有如下程序: DefStr X-Z X="123'’ Y="456" Z=X$+Y$ Print Z$ End 运行后,输出的结果是( )。A.显示出错结果B.123456C.579D.579

考题 有下列程序:DefStr X-ZX="12Y"Y="456"Z=X+YPrint ZEnd运行后,输出结果是______。

考题 有如下程序: DefStr X-Z X="123" Y="456" z=x $+Y$ Print z$ EndA.显示出错结果B.123456C.579D.579

考题 有如下程序: include using namespace std; class TestClass { private: int x,y; pu 有如下程序: #include<iostream> using namespace std; class TestClass { private: int x,y; public: TestClass (int i,int j) { x=i; y=j; } void print() { cout<<"print1"<<end1; } void print()const { cout<<"print2"<<end1; } }; int main() { const TestClass a(1,2); a.print(); return 0; } 该程序运行后的输出结果是( )。A.print1B.print2C.print1 print2D.程序编译时出错

考题 有如下程序: Defstr X-Z X="123" Y="456" Z=X$+Y$ Print Z$ End 运行后,输出的结果是( )。A.显示出错结果B.123456C.579D.579

考题 有如下程序: DefStr X-Z X = "123" Y = "456" Z = X$+Y$ Print Z$ End运行后,输出的结果是( )。A.显示出错结果B.123456C.579D.579

考题 11、程序段如下,程序运行后消息框显示的结果是______。 Dim x%, y%, z%, t% x = 38 : y = 50 : z = 46 If x y Then t = x : x = y : y = t If x z Then t = x : x = z : z = t If y z Then t = y : y = z : z = t MsgBox(y)A.38B.50C.46D.不确定

考题 11、如下程序的输出结果是___________def myfun(x,y=200,z=100): print(x,y,z) myfun(50,100)