教育目的
参考答案:
由国家机关制定推行,在教育活动中占有主体地位,对整个教育活动具有一定的作用。它是制定各级各类学校具体教育目的、确定教育内容、选择教学方法、评价教育效果的依据。
下列词语书写正确的是
A.得鱼忘筌 寒喧 幅员辽阔 暮霭 川流不息
B.礼上往来 飘缈 不既不离 琐屑 貌合神离
C.诙谐滑稽 震撼 战战兢兢 安详 运筹帷幄
D.脍炙人口 畏葸 呕心沥血 慰籍 针贬时弊
以下程序执行后输出的结果是 【15】 。 #include<iostream> #include<fstream> using namespace std; int main()ofstream ofile("D:\\temp.txt");if(!ofile) cout<<"temp.txt cannot open"<<endl; return 0;ofile<<"This is a book" <<" " <<54321<<endl;ofile.close();ifstream ifile("D:\\temp.txt");if(!ifile) cout<<"temp.txt cannot open" <<endl; return 0;charstr[40];ifile >> str;ifile.close();cout<<Str<<endl;return 1;