【Practice】
Practice 1
利用迴圈找出陣列
[34, 231, 4534, 231, 23, 45, 80, 67798, 67783]
的最小值與最大值
Practice 2
利用迴圈找出
[34, 231, 4534, 231, 23, 45, 80, 67798, 67783]
有幾個奇數
Practice 3
利用迴圈找出
[2, 256, 4534, 1024, 23, 45, 0, 2048, 67783, 8, 64]
有幾個為 2 的正整數次方
Practice 4
利用
mapping
建立一個名為 whitelist 的容器,並儲存三筆address
映射bool
資料
Practice 5
阿豪想要架設一個交易多餘電力的合約,在合約中宣告一個
struct
表示當前加入此電力系統的會員們,並在內宣告一個mapping
需要由address
映射uint
,代表他們當前擁有可販賣的多餘電力。
Practice 6
承上,宣告一個
enum
分別代表三種會員電力系統的狀態:malfunction, insufficient, surplus
Practice 7
承上,在我們Practice 5的
struct
中再宣告一個mapping
由address
映射uint
,用於儲存每位會員的電力系統狀態。
Last updated
Was this helpful?