1/ Truy cập Link https://remix.ethereum.org/ 2/ Tạo 1 thư mục mới trên remix click vào trên ảnh3/ Đặt tên cho mục này rồi ấn Enter4/ Copy code dưới dân dán vào mục trống// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FunctionTypes{ uint256 public number = 5; constructor() payable {} // 函数类型 // function (<parameter types>) {internal|external} [pure|view|payable] [returns (<return types>)] // 默认function function add() external{ number = number + 1; } // pure: 纯纯牛马 fun...