设集合A={x|﹣1≤x≤2},B={x|0≤x≤4},则A∪B=( ).
{x|﹣1≤x≤4}
通过摆事实、讲道理,使学生提高认识、形成正确观点的德育方法是( )。
A.榜样法
B.锻炼法
C.说服法
D.陶冶法
下列程序的功能是显示用户在命令行方式下指定的任意驱动器目录,请补充程序。 import java.iO.*; public class FindDirectories { public static void main (String args[ ]) { if(args.length= =0) args=new String[ ]".."}; try { File pathName=new File(args [0]); String[]fileName=pathName.list( ); for(int i=0;<fileName.length;i+ += { File f=new 【 】 if(f.isDirectory( )) { System.out.println(f.getCanonicalPath( )); main(new String[ ] { f.getPath( ) }); } } = catch(IOException e) { e.printStackTrace( ); } = =