ThreeFigureMinuetThing.java
1    package mmw;
2    
3    import note.SNote;
4    
5    public class ThreeFigureMinuetThing {
6    
7        public static void main(String[] args) {
8            SNote note = new SNote();
9            note.text();
10           //(C,1)
11           note.play();
12           //(B,1)
13           note.lp();
14           note.play();
15           note.rp();
16           //(A,1)
17           note.lp(2);
18           note.play();
19           note.rp(2);
20           //(c,1/2)
21           note.s2();
22           note.play();
23           note.x2();
24           //(B,1/2)
25           note.lp();
26           note.s2();
27           note.play();
28           note.x2();
29           note.rp();
30           //(A,1/2)
31           note.lp(2);
32           note.s2();
33           note.play();
34           note.x2();
35           note.rp(2);
36           //(B,1/2)
37           note.lp();
38           note.s2();
39           note.play();
40           note.x2();
41           note.rp();
42           //(C,1)
43           note.play();
44           //(C,3)
45           note.x3();
46           note.play();
47           note.s3();
48   
49       }
50   }
51