SCR反应器出入口差压正常应()。
A.小于1000PA
B.大于1000PA
C.小于2000PA
D.1000PA
参考答案:A
Helen is 15 years old, and Joan is 15, too. So Helen is ____ Joan. [ ]
A. as big as
B. as older as
C. as old as
D. so old as
以下程序企图把从终端输入的字符输出到名为abc.txt的文件中,直到从终端读入字符#号时结束输入和输出操作,但程序有错。 #include<stdio.h> main() FILE*fout;char ch;four=fopen('abc.txt','w');ch=fgetc(stdin);while(ch!='#') fputc(ch,fout); ch=fgetc(stdin); felose(fout); 出错的原因是
A) 函数fopen调用形式错误 B) 输入文件没有关闭C) 函数fsetc调用形式错误 D) 文件指针stdin没有定义