Sally, _____ your sunglasses. The sun is so bright.
A. put on B. put up C. put away D. put down
第1题:
A.put...away
B.put ...up
C.put...off
D.put...down
第2题:
如下函数的作用是以双倍行距输出文件: void double_space(ifstream &f,ofstream &t){ char c; while(______){ ______; if(c=='\n')t.put(c); } } 画线处缺失的部分是
A.f.get(c)与t.put(c)
B.f.put(c)与t.get(c)
C.t.get(c)与f.put(c)
D.t.put(c)与f.get(c)
第3题:
下面函数的作用是以双倍行距输出文件:
void test(ifstream&outf,ofstream&outC) {
char c;
while(______){
______;
if(c=='\n')outc.put(C) ;
}
}
下划线处缺失的代码是( )。
A.outf.put(C) 与outc.get(C)
B.outf.put(C) 与outc.get(C)
C.outf.get(C) 与outc.put?
D.outf.get(C) 与outc.put?
第4题:
A、leave…alone
B、call…up
C、put…aside
D、put…away
第5题:
POST的全称是()。
A.put-on self-test
B.power-off self-test
C.put-off self-test
D.power-on self-test
第6题:
下面程序的输出结果是( )。 #include<iostream> using namespace std; void main() { char cl='a',c2='c'; cout.put('a').put('c').put('\n'); cout.put(c1).put(c2); }
A.ac a c
B.ac ac
C.a c ac c
D.a c