不带可燃性油的高、低压配电装置和非油浸的电力变压器,( )设置在同一房间内。
A.宜
B.可
C.应
D.不宜
参考答案:A
消化性溃疡的主要症状是__________。
有如下的程序: #include <iostream> #include <fstream> using namespace std; int main() { ofstream outf("D:\\temp.txt",ios_base::trunc) ; outf<<"World Wide Web"; outf.close(); ifstream inf("D:\\temp.txt"); char s[20]; inf>>s; inf.close(); cout<<s; return 0; } 执行后的输出结果是 【15】 。