Advertisement
Liverek

Main

May 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. Calculator plus = new Calculator();
  7. plus.setA(2);
  8. plus.setB(10);
  9. plus.add();
  10. plus.exponentiation();
  11. plus.getFirstNumbers();
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement