根据货物安全管理要求,库房保管员要对保管货品定期检查,进行保养和防护。
参考答案:对
以下程序的执行结果是 【15】 。 #include <iostream.h> #include <fstream.h> #include <stdlib.h> int main() fstream outfile, infile;outfile.open("D:\\text.dat",ios::out);if(!outfile) cout<<"text.dat can’t open"<<end1; abort();outfile<<"1234567890"<<end1;outfile<<"abcdefghij"<<end1;outfile.close();infile.open("D:\text.dat",ios::in);if(!infile) cout<<"text.dat can’t open"<<end1; abort ( );char textline[40];int i=0;while(!infile.eof()) i++; infile.getline(textline,sizeof(textline)); cout<<i<<":"<<textline<<end1;infile.close();return 0;
不等式mx2-2mx+(2m-3)<0的解集是空集. (1)m<4;(2)m≥4.