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

15
LINES

< > BotCompany Repo | #1002394 // Compare Numbers Bot

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (762L/6K/18K).

1  
!752
2  
3  
please include function bigint.
4  
5  
answer {
6  
  if "yes or no: is * a bigger number than *?"
7  
    ret compare(m.unq(0), m.unq(1)) > 0 ? "yes" : "no";
8  
  if "yes or no: is * a smaller number than *?"
9  
    ret compare(m.unq(0), m.unq(1)) < 0 ? "yes" : "no";
10  
}
11  
12  
static int compare(S a, S b) {
13  
  //ret (int) evalWith("bigint(A).compareTo(bigint(B))", "A", a, "B", b);
14  
  ret bigint(a).compareTo(bigint(b));
15  
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1002394
Snippet name: Compare Numbers Bot
Eternal ID of this version: #1002394/1
Text MD5: 5935b1b5c9c6e742aa2855253c48d04b
Transpilation MD5: de9ab909dd288a4e7667b61b4c5d7bfd
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-01-24 03:36:38
Source code size: 416 bytes / 15 lines
Pitched / IR pitched: No / No
Views / Downloads: 664 / 1252
Referenced in: [show references]