Advertisement
Guest User

Program

a guest
Nov 22nd, 2014
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package testingground;
  2.  
  3. import javax.swing.JOptionPane;
  4.  
  5. public class Program {
  6.     public static void main(String[] args) {
  7.         System.out.println("The first song should play now!");
  8.         Music a = new Music();
  9.         a.musicone();
  10.         System.out.println("The second song should play now!");
  11.         a.musictwo();
  12.         JOptionPane.showMessageDialog(null,"Press 'ok' to end the application.");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement