用JAVA计算一个矩形的面积?//计算矩形java矩形求面积代码的面积
public class RectArea {
public static double getArea(double width, double higth) {
double area = 0.0;// 矩形面积
// 判断输入是否合理
if (!(width = 0 || higth = 0)) {
area = width * higth;
return area;// 返回面积
} else {
System.out.println("请输入合理java矩形求面积代码的长宽");
return -1;
}
}
public static void main(String[] args) {
//测试 宽:10.0高:20.0
System.out.println("矩形面积"RectArea.getArea(10.0, 20.0));
}
}
计算矩形面积用java方法的重载
class Circle
{
private float a;
private float b;
public float area;
public void setA(float a)
{
this.a=a;
}
public float getA()
{
return this.a;
}
public void setArea(float b)
{
this.b=b;
}
public float getB()
{
return this.b;
}
public void into(float a)
{
area=a*a;
System.out.println("这是一个正方形...面积为: " area);
}
public void into(float a,float b)
{
area=a*b;
System.out.println("这是一个正方形...面积为: " area);
}
}
public class Java
{
public static void main(String args[])
{
Circle c=new Circle();
c.into(2);
c.into(2,3);
}
}
java定义平面矩形类 已知长宽为5和8求矩形周长和面积参考代码
//java定义平面矩形类
public class Rectangle {
public int length;//长
public int width;//宽
public Rectangle(int length, int width) {//有参构造器
this.length = length;
this.width = width;
}
public int getC(){//求周长
return length*2 width*2;
}
public int getS(){//求面积
return length*width;
}
public static void main(String[] args) {
Rectangle r = new Rectangle(5, 8);
System.out.println("长方形的周长:" r.getC());
System.out.println("长方形的面积:" r.getS());
}
}
输出
长方形的周长:26
长方形的面积:40
Java编写一个矩形类,并计算面积和周长?class Rectangle{
private int width = 2;
private int length = 1;
public int getWidth(){
return this.width;
}
public void setWidth(int w){
this.width = w;
}
public int getLength(){
return this.length;
}
public void setLength(int l){
this.length = l;
}
public int getArea(){
return this.length * this.width;
}
public int getCircumference(){
return (this.lengththis.width) * 2;
}
public Rectangle(){}
public Rectangle(int l, int w){
this.length = l;
this.width = w;
}
}
public class demo{
public static void main(String[] args) {
Rectangle rect = new Rectangle(30, 8);
System.out.print("长方形的面积是:");
System.out.println(rect.getArea());
System.out.printf("长方形的周长是:%d\n", rect.getCircumference());
}
}
java求矩形面积 矩形的面积怎么求import java.util.*;
public class Rectangle {
private float length; //定义长变量
private float width; // 宽变量
public Rectangle(float length,float width){
this.length=length;
this.width=width;
}
public float getGirth(){
return (length width)*2;
} //求周长方法
public float getArea(){
return length*width;
} //求面积方法
public static void main (String[] args) {
Scanner in=new Scanner(System.in);//调用输入方法
System.out.println ("请输入矩形的长:");
float a=in.nextFloat();
System.out.println ("请输入矩形的宽:");
float b=in.nextFloat();
System.out.println ("矩形周长为:" new Rectangle(a,b).getGirth());
System.out.println ("矩形面积为:" new Rectangle(a,b).getArea());
}
}
【java矩形求面积代码 java求矩形面积和周长测试类】关于java矩形求面积代码和java求矩形面积和周长测试类的介绍到此就结束了 , 不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。
推荐阅读
- as怎么新建flutter项目,as新建activity
- u盘电脑系统怎么装,u盘的系统怎么装
- pdf转word后编辑,pdf转完word之后如何编辑
- 金阳服务器,金阳怎么样
- python匿名函数菜鸟 python匿名函数有什么用
- iOS端怎么下载musedash,乐看视频ios端怎么下载
- 医嘱java代码,医嘱acm
- word如何新建字体,word新建字体样式在哪里设置
- php数据库连 php数据库连接失败