1、長方體表面積公式?:S?=?2(ab?+?bc?+?ac);
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、大觀網(wǎng)絡(luò)推廣、微信小程序定制開發(fā)、大觀網(wǎng)絡(luò)營銷、大觀企業(yè)策劃、大觀品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供大觀建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
2、長方體體積公式?????:V?=?abc?=?Sh;(這里的S表示底面積)。
實(shí)現(xiàn)如下:
public?class?Cuboid?{
// 定義長方體的長、寬、高
private?double?length,?width,?height;
public?Cuboid(double?length,?double?width,?double?height)?{
super();
this.length?=?length;
this.width?=?width;
this.height?=?height;
}
// 獲取當(dāng)前長方體的表面積
public?double?getSurface()?{
return?getSurface(length,?width,?height);
}
// 獲取當(dāng)前長方體的體積
public?double?getVolume()?{
return?getVolume(length,?width,?height);
}
// 計(jì)算長方體表面積的通用方法
public?static?double?getSurface(double?length,?double?width,?double?height)?{
return?2?*?(length?*?width?+?width?*?height?+?length?*?height);
}
// 計(jì)算長方體體積的通用方法
public?static?double?getVolume(double?length,?double?width,?double?height)?{
return?length?*?width?*?height;
}
public?static?void?main(String[]?args)?{
// 1、創(chuàng)建長方體對象,計(jì)算當(dāng)前長方體的表面積和體積
Cuboid?cuboid?=?new?Cuboid(1,?1.6,?4.8);
System.out.println(cuboid.getSurface());
System.out.println(cuboid.getVolume());
// 2、使用通用方法,計(jì)算任意長方體的表面積和體積
System.out.println(Cuboid.getSurface(1,?1.6,?4.8));
System.out.println(Cuboid.getVolume(1,?1.6,?4.8));
}
}
Scanner?scanner?=?new?Scanner(System.in);
System.out.println("請輸入長方形的長:");
int?inputWidth?=?scanner.nextInt();
System.out.println("請輸入長方形的寬:");
int?inputHeight?=?scanner.nextInt();
int?area?=?inputWidth?*?inputHeight;
int?perimeter?=?2*(inputWidth+inputHeight);
System.out.println("寬為"+inputWidth+"高為"+inputHeight+"的長方形:");
System.out.println("面積為:"+area);
System.out.println("周長為:"+perimeter);
scanner.close();
根據(jù)要求,步驟設(shè)計(jì)分別如下:
1、創(chuàng)建項(xiàng)目【Ex2_1】:
2、創(chuàng)建類【Rectangle】:
3、四個(gè)double類型:
4、長(length)和寬(width)賦值,使用println()和newScanner(System.in),具體解析見擴(kuò)展內(nèi)容。
5、計(jì)算并輸出:
6、執(zhí)行測試:
擴(kuò)展資料:
1、System.out.println解析。
System是一個(gè)類,繼承自根類Object。out是類PrintStream類實(shí)例化的一個(gè)對象,且是System類的靜態(tài)成員變量,println()是類PrintStream的成員方法,被對象out調(diào)用。
2、Scannerinput=newScanner(System.in)。
Scanner是一個(gè)類,是一個(gè)開源代碼,用他創(chuàng)建一個(gè)對象(input),System.in可以看做一個(gè)參數(shù),這個(gè)參數(shù)是鍵盤輸入內(nèi)容。
對象(input)有許多的方法如:input.next();指的是鍵盤輸入的文字內(nèi)容,在用Stringa來接收就是:Stringa=input.next()。
參考資料:
百度百科--java基礎(chǔ)