ThreeFigureMinuetThing.java
1    /* 
2     * (C,1) \ (B,1) \ (A,1) / (C,1/2) \ 
3     * (B,1/2) \ (A,1/2) / (B,1/2) / (C,1) (C,3) 
4     * Assignment 1, Problem 4: Program for Three Figure Minuet Thing 
5     */
6    package mmw;
7    
8    import note.SNote;
9    
10   
11   public class ThreeFigureMinuetThing {
12       public static void main(String[] args) {
13           SNote note = new SNote();
14           note.text();
15           note.play();
16           note.lp();note.play();
17           note.lp();note.play();
18           note.rp();note.rp();note.s2();note.play();
19           note.lp();note.play();
20           note.lp();note.play();
21           note.rp();note.play();
22           note.rp();note.x2();note.play();
23           note.s3();note.play();
24           System.out.println();
25   
26       }
27   }
28