Modifier and Type | Method and Description |
---|---|
int |
add(int c1,
int c2)
Add c1 with c2.
|
int |
div(int c1,
int c2)
Divides c1 by c2 (without remainder).
|
static RealMathMode |
getRealMathMode() |
int |
mul(int c1,
int c2)
Multiplys c1 ith c2.
|
int |
sub(int c1,
int c2)
Subtract c2 from c1.
|
String |
toString()
get the identitfication representation.
|
public static RealMathMode getRealMathMode()
public int mul(int c1, int c2)
MathMode
Multiplys c1 ith c2.
public int div(int c1, int c2)
MathMode
Divides c1 by c2 (without remainder).
public int add(int c1, int c2)
MathMode
Add c1 with c2.
public int sub(int c1, int c2)
MathMode
Subtract c2 from c1.
Copyright © 2023. All rights reserved.