智能合约 运算

pragma solidity ^0.4.18;

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

  

posted @ 2018-01-03 11:24  ahuo  阅读(300)  评论(0编辑  收藏  举报