Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

7
LINES

< > BotCompany Repo | #1007769 // multiply - multiply BigIntegers or doubles

JavaX fragment (include)

static BigInteger multiply(BigInteger a, BigInteger b) {
  ret a.multiply(b);
}

static double multiply(double a, double b) {
  ret a*b;
}

Author comment

Began life as a copy of #1007709

download  show line numbers  debug dex  old transpilations   

Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney, wtqryiryparv

No comments. add comment

Snippet ID: #1007769
Snippet name: multiply - multiply BigIntegers or doubles
Eternal ID of this version: #1007769/4
Text MD5: 670351488fb393032e7f363aadcee3d9
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-03-03 00:33:44
Source code size: 144 bytes / 7 lines
Pitched / IR pitched: No / No
Views / Downloads: 529 / 596
Version history: 3 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1007770 - divide - divide BigIntegers
#1012271 - mul - synonym of multiply - multiply BigIntegers