编了一下午java程序,竟然调试出错,看了半天也没检查出错误。
也没人能请教,真是有点郁闷。
无奈!
请朋友帮忙指正!
创建一个Rectangle类,该类拥有属性length和width,每个属性的默认值均为1。该类拥有方法perimeter和area,分别用于计算矩形的周长和面积。该类还有设置和读取属性length和width的方法。设置方法应检查length和width的属性值是否是大于0.0小于20.0的浮点数。编写一个程序测试Rectangle类。
自己编写的源程序:
import javax.swing.JOptionPane;
public class Rectangle{
private float length=1,width=1;
public void perimeter(){
float a;
a=2*(length+width);
System.out.println("矩形的周长是: "+a);
}
public void area(){
float a;
a=length*width;
System.out.println("矩形的面积是: "+a);
}
public void reset(){
String str=JOptionPane.showInputDialog("请输入length值:");
length=Float.parseFloat(str);
String str=JOptionPane.showInputDialog("请输入width值:");
width=Float.parseFloat(str);
}
public void test(){
if(length>0&&length<20)
System.out.println("length是大于0.0小于20.0的浮点数");
else
System.out.println("length不是大于0.0小于20.0的浮点数");
if(width>0&&width<20)
System.out.println("width是大于0.0小于20.0的浮点数");
else
System.out.println("width不是大于0.0小于20.0的浮点数");
public void read(){
System.out.println("length的值是 "+length);
System.out.println("width的值是 "+width);
}
public static void main(String args[]){
int a;
System.out.println("1:计算矩形的周长");
System.out.println("2:计算矩形的面积");
System.out.println("3:重新设置矩形的长和宽");
System.out.println("4:读取矩形的长和宽");
System.out.println("5:检测长、宽值得范围");
String str=JOptionPane.showInputDialog("请选择上述中的一种操作:");
a=Integer.parseInt(str);
switch(a){
case 1:perimeter();break;
case 2:area();break;
case 3:reset();break;
case 4:read();break;
case 5:test();break;
default:System.out.println("Wrong input!");
}
}
}