12345678910111213141516171819202122232425262728293031323334 |
-
-
-
- public class ShortCalculator {
- short x;
- short y;
-
- public ShortCalculator (short x, short y){
- this.x = x;
- this.y = y;
- }
-
- public short getSum(){
- return (short) (x + y);
- }
-
- public short getDifference() {
- return (short) (x - y);
- }
-
- public short getProduct() {
- return (short) (x * y);
- }
-
- public short getQuotient() {
- return (short) (x / y);
- }
-
- public short getRemainder() {
- return (short) (x % y);
- }
-
- }
|