計算周長和面積(Python)

2021-10-10 09:07:34 字數 864 閱讀 6935

匯入數學模組

import math

# 定義計算類

class count():

def __init__(self, long, wide,high): # 傳入長寬高

self.long = long

self.wide = wide

self.high = high

def perimeter(self): # 定義計算周長方法

# 判斷兩邊之和大於第三邊

if self.long + self.wide > self.high and self.long + self.high > self.wide and self.wide + self.high >self.long:

return self.long + self.wide + self.high

else:

return ("無法構成三角形")

def area(self): # 定義計算面積方法

# 根據海**式 周長/2

p1 = (self.long + self.wide + self.high) /2

# 周長值 * (周長-long) * ... 並賦值給新變數(面積)

p2 = p1 * (p1 - self.long) * (p1 - self.wide) * (p1 - self.high)

# 返回面積的開方

return math.sqrt(p2)

# 例項化物件

c = count(5, 6, 7)

# 呼叫方法

print(c.perimeter())

print(c.area())

輪廓的周長和面積

include include include includeusing namespace cv using namespace std double arclength inputarray curve,bool closed curve 代表輸入點集,一般有三種形式 vector n 2單通道...

c 計算長方體周長和面積

time limit 1000ms memory limit 65536kb submit statistic problem description 通過本題的練習可以掌握拷貝建構函式的定義和使用方法 設計乙個長方形類rect,計算長方形的周長與面積。類中有私有資料成員length 長 width...

3 4 計算長方形的周長和面積

time limit 1000ms memory limit 65536k 通過本題的練習可以掌握拷貝建構函式的定義和使用方法 設計乙個長方形類rect,計算長方形的周長與面積。類中有私有資料成員length 長 width 寬 由具有預設引數值的建構函式對其初始化,函式原型為 rect doubl...