爱奇艺2020校招C 方向笔试题(第二场)
时长:120分钟 总分:98分
92浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 19 | 3 |
设n位同学从左到右依次编号为1, 2, &hellip, n,合唱队形需使队列满足T1...
现已知有10个学生的身高(厘米)为:150、172、163、180、178、160、172、154、165、158,计算他们所组成的最长合唱队队形的长度为多少()
如果在带权有向图中,用顶点表示事件,用有向边表示活动,边上的权值表示活动的...

MyISAM引擎的表tg_user,主键为tg_id,tg_email是允...
下列程序的运行结果是5 5,请将横线处缺失程序补充完整() #includ...
#include <iostream> #include <algorithm> #include <vector> #include<iterator> using namespace std class f { public: int operator()() const {return __________} private: static int x } int f::x=0 int main() { int A[]={7,8,9,4,0} vector<int> B(A+1,A+3) ostream_iterator< int > output( cout, " " ) generate(B.begin(),B.end(),f()) copy(B.begin(),B.end(),output) cout<<endl return 0 }
某市交通局正在查找一个车牌号。据目击者称,该车牌号是一个4位十进制数,是某...
#include <iostream.h> int main( ) { int i=0, n=0 for (i=10 i<22 i++) { n = i*i*i if ( _____________ ) cout << "车牌号是:" << n << endl } return 0 }则程序中下划线处应填写的内容是( )。
以下有关该程序的说法,正确的是( )。
#include &ltstdio.h&gt main( ) { &n...
#include <stdio.h> main( ) { int i, n=0 char c, str[] = "test" for(i=0 str[i] i++) { c = str[i] switch(i) { case 1: case 3: case 4: putchar(c) printf("%d", ++n) break default: putchar('Q') } } }程序运行结果是:( )
下列程序的运行结果是() #include &ltiostream&gt...
#include <iostream> #include <algorithm> #include <list> #define size 10 using namespace std typedef list <int> iList int main () { int x[size],i iList::iterator iL iList list1 for (i=1 i<size i++) list1.push_front(2*i+1) cout<<count(list1.begin(),list1.end(),3)<<endl return 0 }
下列程序的输出结果是1 0 3 ,请将横线处缺失程序补充完整() #inc...
#include<iostream>
using namespace std class A { public: A(int a) { x=a } void set() { x-=5 y+=5 } void show() { cout<<x<<" "<<y<<" " } private: int x static int y } int A::y=0 class B:public A { public: B(int a,int b ,int c):A(a),_______ z(c) {} void set() { A::set() z+=2 } void show() { A::show() cout<<z<<endl } private: int z } int main() { B b(1,2,3) b.show() return 0 }
下列代码执行的输出结果为(&nbsp &nbsp &nbsp ) #...
#include<iostream> using namespace std class MyClass{ double Re,Im public: MyClass(double r,double i) { Re=r Im=i } MyClass() { Re=0 Im=0 } MyClass operator+(MyClass) void showMyClass() } MyClass MyClass::operator+(MyClass m) { MyClass tmp tmp.Re = Re + m.Re tmp.Im = Im + m.Im return tmp } void MyClass::showMyClass() { cout << Re << "," << Im <<endl } int main() { MyClass obj1(1,2),obj2(2,3) MyClass obj3 = obj1+obj2 obj3.showMyClass() return 0 }
下列程序的运行结果是vTxghqw,请为横线处选择合适的程序() #inc...
#include<iostream> #include<string> using namespace std class T { string s public: T(string n):s(n){} void show(){cout<<s<<endl} void count() { int i=0 for(i< i++) if(s[i]>='a'&&s[i]<='z') s[i]+=3 } } int main() { T o1("sTudent") o1.count() o1.show() //system("PAUSE") return 0 }