zl程序教程

您现在的位置是:首页 >  其他

当前栏目

智能合约 运算

智能 运算 合约
2023-09-14 08:58:29 时间
pragma solidity ^0.4.18;

contract test
{
   function mul(uint a) public pure returns (uint) {
        uint c = a * 7;
        return c;
    }
}