【简答题】#include int x=200,y=15; int add(int x,int y) {int s=x+y; return s; } int add( ) { int s=x+y; return s; } void main() { int x,y; x=2; y=3; cout<
【单选题】质量的定义在ISO 9000 族标准关于是指一组固有特性( )。
【单选题】国家倡导健康、文明、环保的( ),支持和鼓励各类社会机构开展旅游公 宣传。
【简答题】仔细阅读如下程序,写出运行结果 main() { extern int x,y;printf( " %d " ,func(x,y)); } int x=15,y=-5; func( int a,int b) { int s; s=a+b; return(s); } 运行结果为 ________ 。
【简答题】Complete the sentences according to the Chinese. 2. 露西进来时他正在看电视。 He ___________ TV when Lucy ___________ in.
【简答题】分析程序,写出运行结果。 main( ) { int x , y , z; x= 5 ; y= 4 ; z= mul (x,y); printf(" mul =%d",z); } int mul ( int a, int b) { int s; s=a/b; return s; }
【简答题】分析程序的输出结果: #include int add(int a,int b); void main() { extern int x,y; cout<
【简答题】露西进来时他正在看电视。 He TV when Lucy in.
【单选题】下列函数的运行结果是( )。 #include int add(int a, int b); void main( ) { extern int x,y; cout< int x(20),y(5); int add(int a, int b) { int s=a+b; return s; }