BINANCE:BTCUSDT   Bitcoin / TetherUS
JUST A Short/SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//Develop a contract write a argumental constructor passing two integers
//And write product function which will return the product of argument passed in the constructor.
contract product{


uint256 mul2;
uint256 num1;
uint256 num2;
constructor (uint256 _a,uint256 _b) {
num1=_a;
num2=_b;

}

function calc4(uint256 _a,uint256 _b) public returns(uint256){

mul2 = _a * _b;
return mul2;
}

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.