题目内容

假设hello.txt文件的内容是:今天是个好日子下列哪个是正确的?( )import java.io.*;public class E{public static void main(String[]args){File file=new File("hello.txt");try{FileReader in=new FileReader(file);int m=in.read();System.out.println((char)m);}catch(Exception e){}}}

A. 程序编译出现错误。
B. 程序在输出台输出:今天。
C. 程序在输出台输出:今。
D. 程序在输出台输出:好。

查看答案
更多问题

假设hello.txt文件的内容是:今天是个好日子下列哪个是正确的?( )import java.io.*;public class E{public static void main(String[]args){File file=new File("hello.txt");char []c=new char[(int)file.length()];try{FileReader in=new FileReader(file);int m=in.read(c);System.out.println(c[2]);}catch(Exception e){}}}

A. 程序编译出现错误。
B. 程序在输出台输出:是。
C. 程序在输出台输出:今。
D. 程序在输出台输出:好。

第4章正则表达式中,[[:digit:]]{3}和[[:digit:]]+ 分别代表什么意思?

第4章正则表达式中,匹配到0~n个非数字符号的正则表达式是什么?

工程中常用的三面投影体系是由( )三个相互垂直组成的。

A. 正立投影面
B. 背立投影面
C. 侧立投影面
D. 水平投影面
E. 垂直投影面

答案查题题库