JAVA题目求助
15、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行1.classA{publicStringtoString(){return"4";}}...
15、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 1.class A{ public String toString(){ return "4"; } } class B extends A{ public String toString(){ return super.toString()+"3"; } } public class test{ public static void main(String args[]){ B b=new B(); System.out.println(b.toString()); } }
16、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 2.public class Leaf { int i=0; Leaf increment() { i++; return this; } void print(){ System.out.println("i = "+i); } public static void main(String[] args) { Leaf x = new Leaf(); x.increment().increment().increment().print(); } }
-------------------------------------------------------------------
16、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 3.下面的程序创建了一个文件输出流对象,用来向文件test.txt中输出数据,假设程序当前目录下不存在文件test.txt,编译下面的程序Test.java后,将该程序运行3次,则文件test.txt 的内容是( )。 import java.io.*; public class Test { public static void main(String args[]) { try { String s="ABCDE"; byte b[]=s.getBytes(); FileOutputStream file=new FileOutputStream("test.txt",true); file.write(b); file.close(); } catch(IOException e) { System.out.println(e.toString()); } } }
-------------------------------------------------------------------
17、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 4. import java.awt.Graphics; import java.applet.Applet; public class ttt extends Applet { public void paint( Graphics g ) { int count, xPos = 25; for ( count = 1; count <= 10; count++ ) { if ( count == 8 ) break; g.drawString( " " + count, xPos, 25 ); xPos += 10; } } } 问题:程序的输出结果是什么?
--------------------------------------------------------------------
18、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 5. public class test { public static void main(String args[]) { String s = null; // Causes a NullPointerException: //! s.toString(); try { s.toString(); } catch(Exception e) { System.out.println("Caught exception " + e); } } }
19、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 6. public class A { public static void main(String args[]) throws IOException{ BufferedReader buf=new BufferedReader( new InputStreamReader(System.in)); String str=buf.readLine(); int x=Integer.parseInt(str); System.out.println(x/100%10); } } 如果在命令行界面输入12345,则程序运行的结果是
题号:20内容:
编写程序返回当前目录下的所有文件(包括子目录),对于文件,列出文件的长度 展开
16、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 2.public class Leaf { int i=0; Leaf increment() { i++; return this; } void print(){ System.out.println("i = "+i); } public static void main(String[] args) { Leaf x = new Leaf(); x.increment().increment().increment().print(); } }
-------------------------------------------------------------------
16、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 3.下面的程序创建了一个文件输出流对象,用来向文件test.txt中输出数据,假设程序当前目录下不存在文件test.txt,编译下面的程序Test.java后,将该程序运行3次,则文件test.txt 的内容是( )。 import java.io.*; public class Test { public static void main(String args[]) { try { String s="ABCDE"; byte b[]=s.getBytes(); FileOutputStream file=new FileOutputStream("test.txt",true); file.write(b); file.close(); } catch(IOException e) { System.out.println(e.toString()); } } }
-------------------------------------------------------------------
17、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 4. import java.awt.Graphics; import java.applet.Applet; public class ttt extends Applet { public void paint( Graphics g ) { int count, xPos = 25; for ( count = 1; count <= 10; count++ ) { if ( count == 8 ) break; g.drawString( " " + count, xPos, 25 ); xPos += 10; } } } 问题:程序的输出结果是什么?
--------------------------------------------------------------------
18、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 5. public class test { public static void main(String args[]) { String s = null; // Causes a NullPointerException: //! s.toString(); try { s.toString(); } catch(Exception e) { System.out.println("Caught exception " + e); } } }
19、阅读程序,对完整的程序写出运行结果,对不完整的程序请补充完整,使其能正确执行 6. public class A { public static void main(String args[]) throws IOException{ BufferedReader buf=new BufferedReader( new InputStreamReader(System.in)); String str=buf.readLine(); int x=Integer.parseInt(str); System.out.println(x/100%10); } } 如果在命令行界面输入12345,则程序运行的结果是
题号:20内容:
编写程序返回当前目录下的所有文件(包括子目录),对于文件,列出文件的长度 展开
展开全部
1.43
2.i=3
3.ABCDEABCDEABCDE
4.1 2 3 4 5 6 7
5.Caught exception java.lang.NullPointerException
6.3
7.public class TestFile{
public static void main(String[] args) {
File f=new File(".");
print(f);
}
public static void print(File dir){
File[] fs=dir.listFiles();
for(int i=0;i<fs.length;i++){
if (fs[i].isFile())
System.out.println(fs[i].getAbsolutePath()+"长度是"+fs[i].length());
else print(fs[i]);
}
}
}
2.i=3
3.ABCDEABCDEABCDE
4.1 2 3 4 5 6 7
5.Caught exception java.lang.NullPointerException
6.3
7.public class TestFile{
public static void main(String[] args) {
File f=new File(".");
print(f);
}
public static void print(File dir){
File[] fs=dir.listFiles();
for(int i=0;i<fs.length;i++){
if (fs[i].isFile())
System.out.println(fs[i].getAbsolutePath()+"长度是"+fs[i].length());
else print(fs[i]);
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询