求一个,用Java编写一个求长方形的面积和周长的程序,(面向对象).

2024-11-20 07:05:25
推荐回答(2个)
回答1:

//看看我这个程序把 比较符合面向对象的思想,告诉搂住一声,尽量把一些程序写尽方法里,而不是都写在主方法中!这样不好~~~~ 希望对你有用!!

import java.util.Scanner;

public class Ex {
public static int squ(int x,int y){ //求面积的方法
int s = x* y;
return s;
}
public static double len(int x,int y){//求周长的方法
int l = (x+y)*2;
return l;
}
public static void main(String [] aa){
System.out.println("请输入宽:"); //从命令行输入宽
Scanner in = new Scanner(System.in);
int le = in.nextInt();
System.out.println("请输入高:");//从命令行输入高
Scanner in2 = new Scanner(System.in);
int hi = in2.nextInt(); //转换为int型
int mianji = squ(le,hi); //调用方法
System.out.println("面积是:" + mianji);

/*
* 求周长同理,调用周长那个方法即可
*/
}
}

回答2:

public class TRect{
public static void main(String args[]){
try{
double wi=Double.parseDouble(args[0]);
double he=Double.parseDouble(args[1]);
double ar=wi*he;
double ro=2*(wi+he);
System.out.println("输入的宽为:"+wi+" 长为:"+he);
System.out.println("面积为:"+ar);
System.out.println("周长为:"+ro);
}
catch(Exception e){
System.out.println(e.toString());
}
}
}