1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
-
-
- public class ShortCalculator {
-
- public Short shortCalculatorSum (Integer firstValue, Integer SecondValue){
-
- int x = firstValue + SecondValue;
-
- short xShort = (short)x;
-
- return xShort;
- }
-
- public Short shortCalculatorDifference (Integer firstValue, Integer SecondValue){
-
- int x = firstValue - SecondValue;
-
- short xShort = (short)x;
-
- return xShort;
- }
-
- public Short shortCalculatorProduct (Integer firstValue, Integer SecondValue){
-
- int x = firstValue * SecondValue;
-
- short xShort = (short)x;
-
- return xShort;
- }
-
- public Short shortCalculatorQuotient (Integer firstValue, Integer SecondValue){
-
- int x = firstValue / SecondValue;
-
- short xShort = (short)x;
-
- return xShort;
- }
-
- public Short shortCalculatorRemainder (Integer firstValue, Integer SecondValue){
-
- int x = firstValue % SecondValue;
-
- short xShort = (short)x;
-
- return xShort;
- }
- }
|