题目内容

物业服务合同具有哪些特点?

查看答案
更多问题

Once we have accomplished one thing, we need to remember that there is plenty left to do.

阅读以下说明和Java源程序,将应填入(n)处的字句写在答题纸的对应栏内。
说明
以下程序的功能是计算三角形、矩形和正方形的面积并输出。
程序由5个类组成:AreaTest是主类,类Triangle、Rectangle和Square分别表示三角形、矩形和正方形,抽象类Figure提供了一个计算面积的抽象方法。
程序
public class AreaTest{
public static void main(String args[]){
Figure[]figures={
new Triangle(2,3,3),new Rectangle(5,8), new Square(5)
};
for(int i=0;i<figures.1ength;i++){
System.out.println(figures[i]+"area="+figures[i].getArea());
}
}
}
public abstract class Figure{
public abstract double SetAJea();
public class Rectangle extends (1) {
double height;
double width;
public Rectangle(double height,double width){
this.height=height;
this.width=width;
}
public String toString(){
return "Rectangle:height="+height+",width="+width+":";
}
public double getArea() { return (2);
} } public class Square extends (3) {
public Square(double width) {
(4);
}
public String toString() {
return "Square:width="+width+":";
} } public class Triangle extends (5). {
double la;
double lb;
double lc;
public Triangle(double la,double lb,double lc) {
this.la=la; this.lb=lb; this.lc=lc;
public String toString(){
return "Triangle: sides="+la+","+lb+","+lc+":";
public double getArea() {
double s=(la+lb+lc)/2.0;
return Math.sqrt(s*(s-la)*(s-lb)*(s?1c));
}
}

广州东皋股份有限公司2008年9月收到超市P产品退货50件。该退货系东皋公司2007年11月份售出,售出时每件售价100元,单位成本80元,该货款当时已如数收存银行。东皋公司用银行存款支付退货款项,退回的P产品验收入库,并按规定开出红字增值税专用发票,经股东大会批准,东皋股份有限公司用以前年度提取的盈余公积弥补当年亏损,当年弥补亏损的数额为680000元。假定不考虑其他因素,编制东皋股份有限公司用盈余公积弥补亏损的会计分录和有关销售退回的会计分录。(增值税率按17%计算)(6分)

从社会化分工的角度看,物流业的发展只有在规模经营和网络化运作的基础上才能
产生预期的效益。

答案查题题库