智能合约 运算

pragma solidity ^0.4.18;

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

  

原文地址:https://www.cnblogs.com/ahuo/p/8182927.html