Java复习题三阅读程序题软件 .doc

上传人:yy****2 文档编号:97463540 上传时间:2024-06-13 格式:DOC 页数:16 大小:51.50KB
返回 下载 相关 举报
Java复习题三阅读程序题软件 .doc_第1页
第1页 / 共16页
Java复习题三阅读程序题软件 .doc_第2页
第2页 / 共16页
点击查看更多>>
资源描述

《Java复习题三阅读程序题软件 .doc》由会员分享,可在线阅读,更多相关《Java复习题三阅读程序题软件 .doc(16页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、JAVA程序设计复习题之(三)阅读程序题三、程序阅读题1阅读以下程序import .*;public class Reverse2 public static void main(String args )int i,n=10; int a = new int10; try BufferedReader br = new BufferedReader( new InputStreamReader(); ai = Int(br.readLine() ); catch (IOException e) ; for (i= n-1; i = 0; i=i-2).print(ai+ ); .printl

2、n();请写出该程序的功能:该程序使用字符缓冲输入流从键盘输入10个数,然后倒序并间隔打印出来。2阅读以下程序import .* ;public class abc public static void main(String args ) int i, s = 0 ; int a = 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120 ; for ( i = 0 ; i a.length ; i+ )if (i % 3 = 0) s += ai;.println(s= + s);请写出该程序的输出结果:s=2603、阅读以下程序:import .*;p

3、ublic class TestRandomAccess public static void main(String args) int data_arr=65,66,56,23,27,1,43,65,4,99; try RandomAccessFile randf=new RandomAccessFile(,rw); for (int i=0; i=0; i=i-2) (i*4); System,( +nt(); (40); .println(TF(); (); catch (IOException e) .println(File access error: +e); 该程序的输出结果是

4、:99 65 1 23 66 Good morning!4、阅读以下程序并填空。class _ extends Exception String mymsg=我自己定义的异常!; double mynum = 2.0; MyException () super(首字母不能为A! ); MyException (String msg)_ /调用父类构造方法,参数为 msg public void displayme() .println(mymsg); public double mymethod() return (mynum); class ExceptionTest public stat

5、ic void main(String args) try if ( argsO.charAt(O)= A) MyException e = new MyException();.println(kkkk: + e.mymethod();e.displayme();Systemoutprintln(*in try*); _; /抛出异常e else if(argsO.charAt(O)= B) throw new MyException (第一个字符不应是B! ); else .println(args0); catch ( _ ) .println(ssage(); ayme(); .pri

6、ntln( + hod(); catch( _ ) .println(命令行参数个数错!); 程序填空:MyException super(msg)throw eMyException aaaArrayIndexOutOfBoundsException5、阅读以下程序 import .*;public class Test public static void main(String args) SubSubClass m=new SubSubClass(3,6,6);m.show(); class SuperClass int a,b; SuperClass(int x,int y) a=x

7、; b=y; class SubClass extends SuperClass int c; SubClass(int aa,int bb,int cc) super(aa,bb);c = cc; class SubSubClass extends SubClass int a; SubSubClass(int aa,int bb,int cc) super(aa,bb,cc);a = aa + bb + cc; void show() .println(a=+ a +nb=+ b +nc=+ c); 请写出该程序的运行结果:a=60b=20c=306、阅读以下程序import .*;pub

8、lic class abc public static void main(String args) String sl = Hello!;String s2 = new String(World!);.println(sl.concat(s2); 请写出该程序的运行结果:Hello!World!7、阅读以下程序import .*;public class Class1 public static void main(String args)int i,max,min;int a = 12,67,8,98,23,56,124,55,99,100);max= min= a0;for(i=1; i

9、a.length; i+)if( ai max) max = ai;.println( max + + min);.println(); 请写出该程序完成的功能:在数组中查找并输出最大值和最小值。8、阅读以下程序import .*;import t.Applet;public class DrawMylmage extends Applet Image myImage; /定义一个图像类Image的对象myImage public void init()myImage= getImage(getDocumentBase(),); public void paint(Graphics g) g.

10、drawImage(myImage,0,0,this); 请写出该程序的功能:在Applet界面中显示当前文件夹下名为“”的图像。9、阅读以下程序并填空。import .*;import t.*;import .*;public class Mypicture _ Applet Image image; public void _() try image=getlmage(new URL(getCodeBase(),); _(MalformedURLException e) public void paint(Graphics g) g.drawlmage(image,0,0,_); publ

11、ic void start() _();程序填空题:extends init catch this repaint10、阅读以下程序:public class Sum public static void main( String args) double sum = 0.0 ; for ( int i = 1; i= 100; i + ) sum += i;, .println( sum= + sum ); 该程序完成的功能是:求sum=1+2+3+.+100的和。11、阅读以下程序:class SuperClass int a,b; SuperClass(int x,int y) a=x;

12、 b=y; voidshow() .println(a=+ a + nb=+ b); class SubClass extends SuperClass int c; SubClass(int aa,int bb,int cc) super(aa,bb);c=cc; voidshow() .println(c=+ c +na=+ a +nb=+ b);class SubSubClass extends SubClass int a; SubSubClass(int aa,int bb,int cc) super(aa,bb,cc);a=aa+bb+cc; void show().println

13、(a=+ a +nb=+ b +nc=+ c); class test public static void main(String args) SuperClass p=new SubSubClass(10,20,30);p.show();该程序的输出结果是:a=60b=20c=3012、阅读以下程序:import .*;publiic class Test public static void main(String args) AB s = new AB(Hello!,I love Java.);.println( s.toString() ); class AB String sl;

14、String s2; AB( String strl, String str2 ) sl = str1; s2 = str2; public String toString() return sl + s2; 该程序的输出结果是:Hello!I love Java.13、阅读以下程序,并填空。import _class MyCopy public static void main(Stringo args) int ch;FileInputStream fin;_ fout;try fin = new FileInputStream(args0);fout = new FileOutputSt

15、ream(_);ch = ();while(ch!=-1) _ch = ();(); (); catch (_ e1) .println(使用格式错误!正确格式为:java mycopy源文件名目标文件名);(0); catch (FileNotFoundException e3) .println(文件没有找到!); catch (IOException e2) .println(流错误!); 程序填空:import .*;FileOutputStreamargs0(ch);ArrayIndexOutOfBoundsException14、阅读以下程序import .*;public cla

16、ss Reverse public static void main(String args) int i,n=10;int a = new int10;for(i=0; i= 0; i-).print(ai+ );.println(); 请写出此程序功能:程序运行时从键盘输入10个整数,然后倒序输出。15、阅读以下程序import .* ;public class Test public static void main(String args ) int i, s = 0;int a = 10, 20, 30, 40, 50, 60, 70, 80, 90;for ( i = 0 ; i

17、a.length; i+ )if(ai % 3 = 0) s += ai;.println(s= + s);请写出此程序的输出结果:s=18016、阅读以下程序(提示:注意同步)class One synchronized void display(int num) .println(two + num);try (1000); catch (InterruptedException e) .println(”中断”);.println(”完成”); class Two implements Runnable int number; One one; Thread t; public Two(

18、One one_num, int n) one = one_num;number = n;t = new Thread(this);t.start(); public void run()ay(number);public class Synch public static void main(String args) throws InterruptedException One one = new One();int digit = 100;Two s1 = new Two(one,digit);Two s2 = new Two(one,digit);Two s3 = new Two(on

19、e,digit);Two s4 = new Two(one,digit);s1.t.join();s2.t.join();s3.t.join();s4.t.join();.println(Synch结束!); 此程序的输出结果是:two 100完成two 100完成two 100完成two 100完成Synch 结束!17、阅读以下程序,并填空。import _ ;class FileTypepublic static void main(String args)_; try FileReader fis = new_(args0);BufferedReader reader = new Bu

20、fferedReader( );String s;while(s=ine()!=_) .println( +(i+)+: + s);();(); catch (IOException e) .println(e); catch (_ e1) .println(“缺少命令行参数!”); 程序填空:.*;int i;FileReaderfisnullArrayIndexOutOfBoundsException18、阅读以下程序:public class Sum public static void main(String args) double sum = 0.0:for (int i=1; i

21、=100; i+)sum += i*i;.println( sum=+sum); 该程序的功能是:求出sum的值为1到100的平方和。19、阅读以下程序:class Example public static void main(String args) int a = new int33;a00=1; a11=1; a22=1;.println(数组a:);for (int i=0; i a.length; i+) for(int j=0; j ai.length; j+).print(aij + );.println(); 该程序的输出结果是:1 0 00 1 00 0 120、阅读以下程

22、序:public class Test2static boolean foo(char c).print(c);return true; public static void main(String args)int i = 0:for(foo(A); foo(B) & (i2); foo(C)i+;foo(D); 此程序的输出结果是:ABDCBDCB21、阅读以下程序,并填空。import _;import .event.*;public class OvalDrawer extends Frame implements Runnable private Color colors= ,_GR

23、AY ; private Color color; private int x=l0,y=10,width=10,height=10; public OvalDrawer(String title)super(title);_; /设置窗口大小为300*300setVisible(true);_; /创建线程并启动 public void run() while(true) x = (int)(m0*300);y = (int)(m0*300);width = (int)(m()*100);height = (int)(m()*100);color = colors(int)(m()*(h-1

24、);_; /刷新窗口内容try (400); catch(InterruptedException e) throw new RuntimeException(e); public void paint(Graphics g)g.setColor(color);_; /画椭圆 public static void main(String args) new OvaIDrawer(hello); 程序填空:.*;setSize(300,300);new Thread(this).start();repaint();g.drawOval(x,y,width,height);22、阅读以下程序:pu

25、blic class Sum public static void main(String args) double sum = 0.0;for (int i=1; i=100; i+) sum += 1.0 / (double)i;.println(sum=+sum); 此程序完成的功能是:求解sum=1+1/2+1/3+.+1/100的值并打印输出。23、阅读以下程序:import .*;import t.Applet;public class Applet1 extends Applet public void paint(Graphics g) g.drawLine(30,5,100,

26、45);g.drawRect(30,50,50,20);g.drawOval(30,80,50,40);g.drawString(They are figures! ,30,150); 此程序完成的功能是:在Applet界面中显示一些由直线、矩形框、椭圆框和文字组成的图形。24、阅读以下程序:import .*;public class Test public static void main(String args) int i;int a=11,22,33,44,55,66,77,88,99;for(i=0; i = a.length/2; i+).print(ail + aa.lengt

27、h-i-1 + );.println(); 此程序的输出结果是:110 110 110 110 11025、阅读程序并填空import .*;import t.*;public class DrawStringDemo _ Applet private Font afont = _Font(Helvetica,18); public void init() _(); public void paint(Graphics g) g.setColor();_(afont);_(This is a test,10,40); 程序填空:extends new setBackground setFont

28、 drawString26、阅读以下程序public class Test( public static void main(String args).printf(sqrt(2.0)=%f, (2.0); 此程序的输出是:sqrt(2.0)=1.41421427、阅读以下程序public class SumTest public static void main(String args) double sum = 0.0;for(int i=1; i 0 ) y = 2 * x;else if( x = 0) y = 2 + (x);else y = x * x + 1; .println(

29、y= + y); 此程序完成的功能是:从键盘输入一个数x,根据x的值求出相应的y值。 2*x x0y= 2 + cos(x) x=0 x2+1 x029、阅读以下程序,完成填空,使其完整。import _;class Rectangle public static void main(String args) _w,l,S,s; /定义变量Scanner keyin = new Scanner();.print(”请输入长方形的长:”);l = ouble();.print(”请输入长方形的宽:”);w = _ ; /输入宽S = _ ; /计算面积并保存在S中s = _ ; /计算周长并保存

30、在s中.println(此长方形的面积:+ S +n此长方形的周长: +s); 程序填空:.Scanner或.*doubleouble()w*l(w+l)*230、阅读以下程序:public class Sum public static void main(String args) double sum = 0.0;for(int i = 1; i = 100; i+)sum += i*i*i;.println(”sum=” + sum); 此程序完成的功能是:计算并输出1到100的立方和sum值。31、阅读以下程序class Test public static void main(Str

31、ing args)int i = 1;do if (i % 3 = 0).print(” ”+i);i+; while(i = 20); 此程序的输出结果是:3 6 9 12 15 1832、阅读以下程序class Test int a; static int b; Test() a=20; b=30; public static void main(String ars)Test sl = new Test();Test s2 = new Test();s2.a = 100; s2.b = 10000; .println(s1.a= + s1.a);.println(s1.b= + s1.b

32、);.println(s2.a= + s2.a);.println(s2.b= + s2.b); 此程序的输出结果是:s1.a=20s1.b=10000s2.a=100s2.b=1000033、阅读以下程序,并填空。import java er;class TestSushu public static void main(String args)int m;boolean flag = true;Scanner keyin = _ /创建Scanner输入对象.print(”请输入要测试的数:”);m = _ /用Scanner对象输入一个整数for(int i = 2; i = _ ; i+) /对m开平方根if ( m % i = 0) flag = false;_/结束循环if (_) /判断 .println( + m +是素数);else .println(+ m +是合数); 程序填空:new Scanner();nt();(m)break;flag

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 成人自考

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁