欢迎来到天天文库
浏览记录
ID:38760024
大小:86.00 KB
页数:6页
时间:2019-06-19
《中大实践考核JAVA语言程序设计试题和答案》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、样题1.写出一个类People,并由该类做基类派生出子类Employee和Teacher。其中People类具有name、age两个保护成员变量,分别为String类型、整型,且具有公有的getAge成员函数,用于返回age变量的值。Employee类具有保护成员变量empno,Teacher类有teano和zc成员变量。答:classPeople{protectedStringname;protectedintage;publicintgetAge(){returnage;}}classEmployeeextendsPeople{prot
2、ectedStringempno;}classTeacherextendsPeople{protectedStringteano;protectedStringzc;}样题2.编写一个输出"HelloWorld",用两种方式实现(Application、Applet)。答:Application:publicclassHello{publicstaticvoidmain(String[]args){System.out.println("HelloWorld");}}Applet:importjava.awt.*;importjava.ap
3、plet.*;publicclassHelloAextendsApplet{publicvoidpaint(Graphicsg){g.drawString("HelloWorld",50,25);}}样题3.编写一个输出applet实现界面,并实现在第一文本框中输入一个数后,按"求绝对值"按钮在第二个文本框中显示该数的绝对值,按"退出"按钮中断程序运行。答:Importjava.awt.*;importjava.awt.event.*;importjava.lang.Math;publicclassAbsimplementsActionLi
4、stener{Framef;TextFieldtf1,tf2;Buttonb1,b2;publicvoiddisplay(){f=newFrame("求绝对值例子");f.setSize(220,150);f.setLocation(320,240);f.setBackground(Color.lightGray);f.setLayout(newFlowLayout(FlowLayout.LEFT));tf1=newTextField(10);tf1.setEditable(true);tf2=newTextField(10);tf2.se
5、tEditable(false);f.add(tf1);f.add(tf2);b1=newButton("求绝对值");b2=newButton("退出");f.add(b1);f.add(b2);b1.addActionListener(this);b2.addActionListener(this);f.addWindowListener(newWinClose());f.setVisible(true);}publicvoidactionPerformed(ActionEvente){if(e.getSource()==b1){int
6、value=(newInteger(tf1.getText())).intValue();tf2.setText(Integer.toString(Math.abs(value)));}else{if(e.getSource()==b2){6System.exit(0);}}}publicstaticvoidmain(Stringarg[]){(newAbs()).display();}}classWinCloseextendsWindowAdapter{publicvoidwindowClosing(WindowEvente){Syste
7、m.exit(0);}}样题4.定义一个分数类Fractor,使能完成分数的加、减运算。请定义测试主类。要求:Fractor,的数据成员有:分子m:分母n:分数类的方法成员有:Fractor(...){...}//定义带两个参数的构造方法,用于给分子分母初始化voidadd(Fractor){...}//定义加运算voidsub(Fractor){...}//定义减运算voiddisplay(){...}//显示分数,格式为"m/n"intfactor(intk,intv)//求两数的最大公约数。答:importjava.lang.*;pu
8、blicclassFractor{intm;intn;Fractor(intm,intn){this.m=m;this.n=n;}voidadd(Fractora){m+=a.m
此文档下载收益归作者所有