The sentence I lived from paycheck to paycheck.(Line 6, Para. 5) shows that
A.Alvarez cared about nothing but making money.
B.Alvarez''s salary barely covered her household expenses.
C.Alvarez got paychecks from different jobs.
D.Alvarez paid practically everything by check.
第1题:
给出下列的代码,哪行在编译时可能会有错误? ① public void modify() { ② int i,j,k; ③ i=100; ④ while(i>0) { ⑤ j=i*2; ⑥ System.out.println(" The value of j is"+ j); ⑦ k=k+1; ⑧ } ⑨}
A.line 4
B.line 6
C.line 7
D.line 8
第2题:
给出下列的代码,哪行在编译时可能会有错误? ① public void modify( ){ ② int i,j,k; ③ i = 100; ④ while( i > 0){ ⑤ j = i * 2; ⑥ System.out.println("The value of j is" + j); ⑦ k=k + 1 ⑧ } ⑨ }
A.line 4
B.line 6
C.line 7
D.line 8
第3题:
【C6】
A.punishes
B.defeats
C.tells
D.shows
第4题:
给出下列代码, ( )行在编译时可能会有错误。 ①public void modify( ){ ②int i,j,k; ⑧i=100; ④while(i>0){ ⑤j=i*2; ⑥System.out.println("The value of j is"+j); ⑦k=k+l; ⑧} ⑨}
A.line 4
B.line 6
C.line 7
D.line 8
第5题:
若有以下程序: void g(int **q) { (**q) ++; (*q) ++; } void main() { int line [5]; int *p=line; for (i=0; i<5; i++) { *p=i; g(&P); } for (i=0; i<5; i++) cout<<line[i]; cout<<end1; } 该程序运行后的输出结果为( )。
A.12345
B.1234
C.11111
D.55555
第6题:
给出下列的程序段,哪行在编译时可能会有错误? ( ) ①public void modify( ) ②int i,j,k; ③ i=100; ④ while(i>0){ ⑤ j=i*2; ⑥ System.out.println("The value of j is "+j); ⑦ k=k+1; ⑧ } ⑨}
A.line 4
B.line 6
C.line 7
D.line 8