JAVA 考试编程题如何编写一个矩形类

JAVA考试编程题如何编写一个矩形类... JAVA 考试编程题如何编写一个矩形类 展开
 我来答
flyingFish211
2010-12-23 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
用春敏信这个肯定可以
public class Rectangle {

private float width;//长
private float height;//宽

public Rectangle(float width, float height){
this.width = width;
this.height = height;
}

//计扒轮算周长= (长拿运+宽)*2
public float calcCircle(){
return (width + height) * 2;
}

//计算面积 长*宽
public float calcArea(){
return width * height;
}

public float getHeight() {
return height;
}

public void setHeight(float height) {
this.height = height;
}

public float getWidth() {
return width;
}

public void setWidth(float width) {
this.width = width;
}

}
老子出关十八t
2010-12-24 · TA获得超过333个赞
知道答主
回答量:284
采纳率:0%
帮助的人:244万
展开全部
import java.awt.*;
import javax.swing.*;

public class drawRech extends JApplet {
public void paint(Graphics g){
super.paint(g);
this.setBackground(Color.WHITE);
String width = JOptionPane.showInputDialog("Enter the width");
String height = JOptionPane.showInputDialog("Enter the height"清镇);

int wid = 0;
int heig = 0;
try{
wid = Integer.parseInt(width);
heig = Integer.parseInt(height);
}
catch(NumberFormatException e){
JOptionPane.showMessageDialog(null, "Wrong input");
}
g.drawRect(100, 100, wid, heig);
}
}
已添加异租正桥常处理,测试成弊猛功
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式