Skip to content

Instantly share code, notes, and snippets.

@nguyenphucbao68
Created August 9, 2017 09:34
Show Gist options
  • Save nguyenphucbao68/87b213d380df69b8e5fe950e35dc9291 to your computer and use it in GitHub Desktop.
Save nguyenphucbao68/87b213d380df69b8e5fe950e35dc9291 to your computer and use it in GitHub Desktop.
Operator Config Formula In JckConsole
* : nhân
+ : cộng
- : trừ
/ : chia
^ : mũ. Vd : 2^3 => 8
(): đóng ngoặc, mở ngoặc
Abs : trị
Ceiling : Làm tròn số lên. Vd : 0.2 => 1
Floor : Làm tròn số xuống. Vd : 0.8 => 0
Mod : Lấy số dư. Vd : Mod(8, 4) => 0. Mod(9,2) => 1
Round : Làm trong số bình trường. Vd : 1.5 => 2
Sqrt : Căn của số. Vd : Sqrt(9) => 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment