京东2019校招笔试C 开发工程师笔试题
时长:90分钟 总分:100分
76浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 1 | 16 |
TCP协议的拥塞控制就是防止过多的数据注入到网络中,这样可以使网络中的路由...
X定义如下,若存在X a a.x=0x1122334...
union X{
int x
char y[4]
}
有以下程序#include <iostream>us...
#include <iostream>
using namespace std
class D{
int d
public:
D(int x=1):d(x){}
~D(){cout<<"D"}}
int main(){
D d[]={_____________}
D* p=new D[2]
delete[]p
return 0 }
程序运行的结果是DDDDD,请为横线处选择合适的程序( )
有以下程序#include<iostream> us...
#include<iostream>
using namespace std
class complex
{ public:
int real
int imag
complex(int r=0,int i=0)
{ real=r
imag=i}
_________________________________
}
complex add(complex &a,complex & b)
{int r=a.real+b.real
int i=a.imag+b.imag
return complex(r,i)}
int main( )
{complex x(1,2),y(3,4),z
z=add(x,y)
cout<<z.real<<"+"<<z.imag<<"i"<<endl}
程序的输出结果为4+6i,请为横线处选择合适的程序 ( )
有以下类定义#include <iostream>u...
#include <iostream>
using namespace std
class shape
{public:
virtual int area()=0
}
class rectangle:public shape
{public:
int a, b
void setLength (int x, int y) {a=xb=y}
int area() {return a*b}
}
若有语句定义rectangle r r.setLength(3,5) 则编译时无语法错误的语句是( )