脑性瘫痪的作业疗法不包括()。
A.制作辅助器
B.日常生活能力训练
C.心理治疗
D.生活环境设施改建
E.精细功能训练
参考答案:C
TBT协议由15个条款和3个附件组成,从内容上可分为()等几部分。
A.名词术语部分
B.名词术语详解部分
C.技术法规、标准和合格评定部分
D.信息和协调部分
E.机构、磋商和解决争端部分
以下程序的执行结果是_______。 #include<iostream.h> #include<fstream.h> #include<stdlib.h> void main() char ch: fstream file: file.open("abc.dat",ios::out1ios::inlios::binary); if(! file) cout<<“abc.dat文件不能打开”<<endl: abort(); file<<“12 34 56”<<endl: file.seekg(o,ios::beg): while(!file.eof()) streampos here=file.tellg(); file.get(ch): if(ch==’’) cout<<here<<"": cout<<endl: