Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package ConvertorValutar;
  2. import java.lang.StrictMath;
  3. import java.math.BigInteger;
  4. import javax.swing.*;
  5. import java.awt.event.*;
  6. import java.awt.*;
  7.  
  8. public class MainClass
  9. {
  10. public static void main(String[] args)
  11. {
  12. Model model = new Model();
  13. View view = new View(model);
  14. Controller controller = new Controller(model, view);
  15. view.setVisible(true);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement