下面程序的输出结果为( )。
a=4.5
b=-123
MsgBox c
第1题:
下面程序的输出结果为______。
a=4.5
b=-123
c=Len(Str(B) +Str(A))
Msg Box c
第2题:
阅读下面程序,则执行后的输出结果为
( )

第3题:
在下面的程序的横线处填上适当的语句,使该程序的输出结果为12。
include<iostream>
using namespace std;
class TestClass
{
public:
int a,b;
TestClass(int i,int j)
{
a=i;
b=j;
}
};
class TestCla
第4题:
下面程序的输出结果为【 】。
inclUde<iostream.h>
void main()
{
int a;
int &b=a;//变量引用
b=10;
cout<<"a="<<a<<endl;
}
第5题:
下面程序的输出结果为( )。
CLEAR
