查题网
高校
面向对象程序设计
截止01-07,该科目累计收录道题目。
返回课程列表
15[分析题] #include<iostream.h> int f1(int x,int y){ x=x y;y=x y; cout<<”x=”<<x<<”,y=”<<y<<endl; return x y;}void main(){ int x=5,y=8; int z=f1(x,y); cout<<”x=”<<x<<”,y=”<<y; cout<<”,z=”<<z<<endl;}
查看答案
2022-12-13 21:17:49
16[分析题] #include<iostream.h> void main() { for(int i=1,s=0;i<7;i ) { if(i%2==0||i%3==0)continue; cout<<i<<’ ’; s =I; } cout<<s<<endl; }
查看答案
2022-12-13 21:17:49
17[分析题] #include<iomanip.h> const int M=20; void main() { int c2,c3,c5; c2=c3=c5=0; for(int i=1;i<=M;i ) { if(i%2==0) c2 ; if(i%3==0) c3 ; if(i%5==0) c5 ; } cout<<c2<<’ ‘<<c3<<’ ‘<<c5<<endl; }
查看答案
2022-12-13 21:17:49
18[分析题] #include<iostream.h> class A { int a,b; public: A(int aa=0,int bb=0):a(aa),b(bb){ cout<<”Constructor!”<<a b<<endl; }}; void main(){ A x, y(2,3), z(y); }
查看答案
2022-12-13 21:17:49
19[分析题] #include<iostream.h> classA { int a,b; public: A(){ a=b=0; } A(int aa,int bb){ a=aa;b=bb; cout<<a<<’ ‘<<b<<endl; }}; void main(){ A x, y(2,3), z(4,5); }
查看答案
2022-12-13 21:17:49
20[分析题] #include<iostream.h> #define PI 3.14159 const int R=10 void main() { double p,s; p=2*R*PI; s=PI*R*R; cout<<”p=”<<p<<endl; cout<<”s=”<<s<<endl; }
查看答案
2022-12-13 21:17:49
21[分析题] #include enum race{Black,White,Yellow}; void main() { race ra; ra=Black;cout< ra=White;cout< ra=Yellow;cout< cout< }
查看答案
2022-12-13 21:17:49
22[分析题] #include<iostream.h> void fun10(int *a[],int m,int n) { int i,j; for(i=0;i<m;i ) a[i]=new int [n]; for(i=0;i<m;i ) for(j=0;j<n;j ) a[i][j]=(i 1)*(j 1); } void main() {int m1=2,n1=2; int **b=new int *[m1]; fun10(b,m1,n1); for(int i=0;i<m1;i ){ for(int j=0;j<n1;j ) cout<<b[i][j]<<’ ’; cout<<endl; } }
查看答案
2022-12-13 21:17:49
23[分析题] #include “iostream.h” class G{ public: static int m; G( ) //构造函数 { m ; cout<<”G begins” ; } ~F( ){ cout<<”G ends”; m--; } };class D:public G{ public: D( ) //构造函数 { m ; cout<<”D begins”; } ~F( ){ cout<<”D ends” ; m-- ; } };void main( ){ D objg; cout<<G::m ;}
查看答案
2022-12-13 21:17:49
24[分析题] #include “iostream.h” #include “stdio.h”class timer{ //定义一个时间类int seconds;public:timer();{ seconds=0; }timer(int x){ seconds=x; } timer(int min,int sec){seconds=min*60 sec;}int gettime(){return seconds;}};main(){ timer a, b(10),c(1,10); cout<<a.gettime()<<’endl; cout<<b.gettime()<<endl; cout<<c.gettime()<<endl; return 0;}
查看答案
2022-12-13 21:17:49
首页
上一页
...
20
21
22
(current)
23
24
...
下一页
尾页