单项选择题下列程序的输出结果是 #include<iostream.h> class Myclass public : Myclass( int i=0,int j=0) x=i; y=j; void show( )cout<< x= <<x<< < y= <<y<<endl; void show( )constcout<< x= << << y= <<y<<endl; privated: int x; int y; ; void main( ) Myclass my l (3,4); const my2(7,8); my l.show( );my2.show( );
单项选择题有以下程序 #include<iostream> using namespace std; int a; int fun(); int main() extern int a; int b; a=100; b=fun(); cout<<b<<end1; return 0; int fun() extern int a; return(10*A) ; 其程序运行后的输出结果是