欢迎来到三一文库! | 帮助中心 三一文库31doc.com 一个上传文档投稿赚钱的网站
三一文库
全部分类
  • 研究报告>
  • 工作总结>
  • 合同范本>
  • 心得体会>
  • 工作报告>
  • 党团相关>
  • 幼儿/小学教育>
  • 高等教育>
  • 经济/贸易/财会>
  • 建筑/环境>
  • 金融/证券>
  • 医学/心理学>
  • ImageVerifierCode 换一换
    首页 三一文库 > 资源分类 > DOC文档下载  

    Java与网络程序设计考核要求.doc

    • 资源ID:12397485       资源大小:330KB        全文页数:17页
    • 资源格式: DOC        下载积分:4
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录 QQ登录   微博登录  
    二维码
    微信扫一扫登录
    下载资源需要4
    邮箱/手机:
    温馨提示:
    用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP免费专享
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    Java与网络程序设计考核要求.doc

    姓名: 学号: 班级:天津师范大学考核要求2011 2012 学年第一学期期末考核要求科目:Java与网络程序设计 学院: 计信学院专业:计算机科学与技术题号一二三四五总分分数 2011-2012(1)的“Java与网络程序设计”课程为专业选修课,鉴于课程特点,“Java与网络程序设计”课程采用开卷实践考核方式,选修此课程的同学应于第17教学周完成实践考核题目,并上交程序成品、完成答辩。实践考核题目独立完成Project1、Project2、Project3和Project4四个项目。Project 1(1)按照如下UML图要求实现GeometricObject类和Circle类:(2)修改Circle类,使其实现Comparable接口并覆盖Object类的equals方法,其中实现Comparable接口的Circle类能根据radius数值比较大小,覆盖的equals方法能根据radius数值判定Circle对象是否相等;(3)编写测试类,创建半径为5和10的Circle对象,显示equals方法和compareTo方法调用结果。import java.util.Date;/编写测试类,创建半径为5和10的Circle对象,显示equals方法和compareTo方法调用结果。public class Testpublic static void main(String args)Circle c1=new Circle(5);Circle c2=new Circle(10);System.out.println(c1.equals(c2);System.out.println(pareTo(c2);class GeometricObject private String color;private boolean filled;private Date dateCreated;GeometricObject()GeometricObject(String color,boolean filled)this.color=color;this.filled=filled;public String getColor() return color;public void setColor(String color) this.color = color;public boolean isFilled() return filled;public void setFilled(boolean filled) this.filled = filled;public Date getDateCreated() return dateCreated;public String toString()return color;/?public double getArea()return 0; /public double getPerimeter()return 0;/class Circle extends GeometricObject implements Comparableprivate double radius;Circle()Circle(double radius)this.radius=radius;Circle(double radius,String color,boolean filled)this.radius=radius;this.setColor(color);this.setFilled(filled);public double getRadius() return radius;public void setRadius(double radius) this.radius = radius;public double getDiameter()return this.radius*2;/直径/实现Comparable接口的Circle类能根据radius数值比较大小public int compareTo(Object o)if(getRadius()>(Circle)o).getRadius()return 1;else if(getRadius()<(Circle)o).getRadius()return -1;elsereturn 0;/覆盖的equals方法能根据radius数值判定Circle对象是否相等;public boolean equals(Circle c)if(getRadius()=c.getRadius()return true;elsereturn false;Project 2:编写程序显示一个饼图,使用饼图显示作业、平时测验、期中考试和期末考试占总成绩的百分比。假设作业占20%用红色显示,平时测验占10%用蓝色显示,期中考试占30%用绿色表示,期末考试占40%用橙色表示。import javax.swing .*;import java.awt.*;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.util.Scanner;public class Test public static void main(String args)ZiFrame frame=new ZiFrame();frame.setTitle("饼图");/面板标题frame.setSize(300,200);/面板大小frame.setResizable(false);/不能改变面板大小frame.setLocationRelativeTo(null);/显示器上居中显示frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);/关闭操作frame.setVisible(true);class ZiFrame extends JFrameZiFrame()setLayout(new BorderLayout();add(new NewJPanel(),BorderLayout.CENTER);class NewJPanel extends JPanelprotected void paintComponent(Graphics g)super.paintComponent(g);int xCenter=getWidth()/2;int yCenter=getHeight()/2;int radius=(int)(Math.min(getWidth(), getHeight()*0.4);int x=xCenter-radius;int y=yCenter-radius;g.setColor(Color.red);g.fillArc(x, y, 2*radius, 2*radius, 0,72);g.setColor(Color.blue);g.fillArc(x, y, 2*radius, 2*radius,72, 36);g.setColor(Color.green);g.fillArc(x, y, 2*radius, 2*radius, 98,108);g.setColor(Color.white);g.fillArc(x, y, 2*radius, 2*radius, 206,154);g.setColor(Color.black);g.drawString("Projects-20%", 3*radius,40);g.drawString("Quizzes-10%", 2*radius,10);g.drawString("Midterms-40%", 0,radius);g.drawString("Final-40%", 2*radius,140);Project 3: 编写一个程序,计算投资值在给定利率以及给定年数下的未来值。计算的公式如下所示:使用文本域显示利率、投资总额和年数。当用户点击Calculate按钮时,在文本域显示未来的总额。/* 编写一个程序,计算投资值在给定利率以及给定年数下的未来值。计算的公式如下所示:使用文本域显示利率、投资总额和年数。当用户点击Calculate按钮时,在文本域显示未来的总额。 */import java.awt.Dimension;import java.awt.GridLayout;import java.awt.Toolkit;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JTextField;public class Test public static void main(String args)ZiFrame frame=new ZiFrame();frame.setTitle("投资计算器");/面板标题frame.setSize(300,200);/面板大小frame.setResizable(false);/不能改变面板大小frame.setLocationRelativeTo(null);/显示器上居中显示frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);/关闭操作frame.setVisible(true);/显示面板class ZiFrame extends JFrameprivate JButton btn=new JButton("Calculate");private JTextField tfd1=new JTextField(8),tfd2=new JTextField(8),tfd3=new JTextField(8),tfd4=new JTextField(8);/private double investmentAmount,years,annualInterestRate;ZiFrame()setLayout(new GridLayout(5,2,5,5);add(new JLabel("InvestmentAmount:");add(tfd1);add(new JLabel("Years:");add(tfd2);add(new JLabel("Annual Interest Rate:");add(tfd3);add(new JLabel("Future value:");add(tfd4);add(new JLabel("");add(btn);btn.addActionListener(new ActionListener()public void actionPerformed(ActionEvent e)tfd4.setText(""+Double.parseDouble(tfd1.getText()*Math.pow(1+Double.parseDouble(tfd3.getText()/1200),Double.parseDouble(tfd2.getText()*12););Project 4:编写一个程序,模拟交通信号灯。程序让用户从红、黄、绿三色灯中选择一种。当选择一个单选按钮后,相应的灯被打开,每次只能亮一种灯。程序开始时所有的灯都不亮。import java.awt.BorderLayout;import java.awt.Color;import java.awt.Graphics;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.ButtonGroup;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.JRadioButton;public class Test public static void main(String args)RadioButtonDemo frame=new RadioButtonDemo();frame.setTitle("信号灯");/面板标题frame.setSize(300,200);/面板大小frame.setResizable(false);/不能改变面板大小frame.setLocationRelativeTo(null);/显示器上居中显示frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);/关闭操作frame.setVisible(true);class RadioButtonDemo extends JFrameprivate JRadioButton jrbRed,jrbYellow,jrbGreen;RadioButtonDemo()BorderLayout blay=new BorderLayout();setLayout(blay);JPanel jpRadioButtons=new JPanel();final StartJPanel jpRadioLamps=new StartJPanel();jpRadioButtons.setLayout(new GridLayout(1,3);jpRadioButtons.add(jrbRed=new JRadioButton("Red");jpRadioButtons.add(jrbYellow=new JRadioButton("Yellow");jpRadioButtons.add(jrbGreen=new JRadioButton("Green");add(jpRadioLamps,BorderLayout.CENTER);add(jpRadioButtons,BorderLayout.SOUTH);ButtonGroup group=new ButtonGroup();group.add(jrbRed);group.add(jrbYellow);group.add(jrbGreen);/设置热键jrbRed.setMnemonic('R');jrbYellow.setMnemonic('Y');jrbGreen.setMnemonic('G');jrbRed.addActionListener(new ActionListener()public void actionPerformed(ActionEvent e)jpRadioLamps.i=1;repaint(););jrbYellow.addActionListener(new ActionListener()public void actionPerformed(ActionEvent e)jpRadioLamps.i=2;repaint(););jrbGreen.addActionListener(new ActionListener()public void actionPerformed(ActionEvent e)jpRadioLamps.i=3;repaint(););class StartJPanel extends JPanelpublic int i=0;protected void paintComponent(Graphics g)super.paintComponent(g);int xCenter=getWidth()/2;int yCenter=getHeight()/2;int radius=(int)(Math.min(getWidth(), getHeight()*0.4);int x=xCenter-radius;int y=yCenter-radius;if(i=0)g.drawRect(xCenter, y,40, 120);g.drawOval(xCenter+2, y+2, 35, 35);g.drawOval(xCenter+2, y+42, 35, 35);g.drawOval(xCenter+2, y+82, 35, 35);if(i=1)g.drawRect(xCenter, y,40, 120);g.setColor(Color.red);g.fillOval(xCenter+2, y+2, 35, 35);g.setColor(Color.black);g.drawOval(xCenter+2, y+42, 35, 35);g.drawOval(xCenter+2, y+82, 35, 35);if(i=2)g.drawRect(xCenter, y,40, 120);g.setColor(Color.yellow);g.fillOval(xCenter+2, y+42, 35, 35);g.setColor(Color.black);g.drawOval(xCenter+2, y+2, 35, 35);g.drawOval(xCenter+2, y+82, 35, 35);if(i=3)g.drawRect(xCenter, y,40, 120);g.setColor(Color.green);g.fillOval(xCenter+2, y+82, 35, 35);g.setColor(Color.black);g.drawOval(xCenter+2, y+42, 35, 35);g.drawOval(xCenter+2, y+2, 35, 35);开发与部署环境要求JDK 1.7Eclipse Indigo上交内容及格式将Project1、Project2、Project3和Project4的整个项目文件夹压缩为.rar文件,压缩文件名分别为<学号><姓名>1.rar、 <学号><姓名>2.rar、<学号><姓名>3.rar和<学号><姓名>4.rar,如:学号为06509275的张三同学上交的四个文件应为06509275张三1.rar、06509275张三2.rar、06509275张三3.rar和06509275张三4.rar。评分标准每个项目占20分,答辩表现占20分,共计100分。项目要求能实现需求的全部功能,运行有效,无明显错误;界面友好、美观;代码架构清晰、条理清楚;有必要注释。答辩要求能独立部署并熟练演示提交的程序;正确回答相关问题。17 / 17文档可自由编辑打印

    注意事项

    本文(Java与网络程序设计考核要求.doc)为本站会员(scccc)主动上传,三一文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知三一文库(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    经营许可证编号:宁ICP备18001539号-1

    三一文库
    收起
    展开