45 lines
1.4 KiB
Markdown
45 lines
1.4 KiB
Markdown
---
|
||
id: 5e444147903586ffb414c94f
|
||
title: 多邊形面積計算器
|
||
challengeType: 10
|
||
forumTopicId: 462363
|
||
dashedName: polygon-area-calculator
|
||
---
|
||
|
||
# --description--
|
||
|
||
在這個項目中,你將使用面向對象的編程來創建 Rectangle(矩形) 類和 Square(正方形) 類。 Square 類應該是 Rectangle 的子類,並繼承方法和屬性。
|
||
|
||
你可以[在 Replit 上查看整個項目的具體描述和初始代碼](https://replit.com/github/freeCodeCamp/boilerplate-polygon-area-calculator)。
|
||
|
||
到達此鏈接後,fork 這個項目。 當你根據 “README.md” 中的說明完成了項目,請在下方提交你的項目鏈接。
|
||
|
||
Python 課程的交互式教學部分仍在開發當中。 目前,freeCodeCamp.org YouTube 頻道上的一些視頻將會教授你這個項目需要的所有技能。
|
||
|
||
<ul>
|
||
<li>
|
||
<a href='https://www.freecodecamp.org/news/python-for-everybody/'>Python for Everybody 視頻課程</a>(14 小時)
|
||
</li>
|
||
<li>
|
||
<a href='https://www.freecodecamp.org/news/learn-python-basics-in-depth-video-course/'>Learn Python 視頻課程</a>(2 小時)
|
||
</li>
|
||
</ul>
|
||
|
||
# --hints--
|
||
|
||
它應該創建一個 Rectangle 類和 Square 類並通過所有測試。
|
||
|
||
```js
|
||
|
||
```
|
||
|
||
# --solutions--
|
||
|
||
```js
|
||
/**
|
||
Backend challenges don't need solutions,
|
||
because they would need to be tested against a full working project.
|
||
Please check our contributing guidelines to learn more.
|
||
*/
|
||
```
|