Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1.  
  2. public class Calculator {
  3. public Calculator() {
  4. }
  5. public int getValue() {
  6. return 0;
  7. }
  8.  
  9. void setValue(int val) {
  10. }
  11.  
  12. void clear() {
  13. }
  14.  
  15. void add(int val) {
  16. }
  17.  
  18. void subtract(int val) {
  19. }
  20.  
  21. void multiplyBy(int val) {
  22. }
  23. void divideBy(int val) {
  24. }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement